Correction the hidden side menu , permanent side menu for the desktop version of Blogger, I have not checked it in mobile because the panel is not displayed In the Blogger menu, open add: Theme (menu) > CUSTOMISE (button) > Advanced (arrow in menu) > Page (scroll to the bottom of the list) > Add CSS Add CSS one line: #gadget-dock { right: 0px; } To save, click the floppy disk icon in the lower right corner Permanent side menu for dynamic template on Blogger.com, example of how it looks Динамический шаблон Blogger.com Исправление — минус Самый жирный для меня – это спрятанное боковое меню , постоянное боковое меню для настольной версии Blogger, в мобильной не проверял. В русском меню Blogger , откройте настройку: Тема (меню)> НАСТРОИТЬ (кнопка)> Дизайн (в меню стрелка) > Расширенные > Текст страницы (нажать и прокрутить список меню в самый низ) > Добавить CSS Добавить CSS одну cтроку: #gadget-dock { right: 0px; } Для сохранен
SynEdit is a syntax highlighting edit control for Delphi and Kylix Symptom Component TDBSynEdit cannot open the BLOB field of SQLite3 database if the data type is set to TEXT and UTF8 encoding . Zeos unicode v7.2.6 components (UTF16) are used to access database SQLite3. Source code SynDBEdit.pas (2014-10-13) Solution Replace LoadMemo default encoder typ e Byte to Unicode 2 bytes , if data field type is Widestring. The code below tested in Delphi XE6 and 10.1 procedure TCustomDBSynEdit . LoadMemo ; {$IFDEF UNICODE} const BlobFieldWideText = [ ftWideMemo , ftWideString ] ; {$ENDIF} {$IFDEF SYN_COMPILER_3_UP} var BlobStream : TStream ; {$ELSE} var BlobStream : TBlobStream ; BlobField : TBlobField ; {$ENDIF} begin try {$IFDEF SYN_COMPILER_3_UP} BlobStream : = FDataLink . DataSet . CreateBlobStream ( FDataLink . Field , bmRead ) ; {$ELSE} BlobField : = FDataLink . Field as TBlobField ; BlobStream : =