sebdelsol

Results 170 comments of sebdelsol

Here's the fix : ```lua function ReaderFooter:genItemSymbolsMenuItems(value) local strings = { icons = C_("Status bar", "Icons"), letters = C_("Status bar", "Letters"), compact_items = C_("Status bar", "Compact"), } if value ==...

It's in `ReaderFooter:genItemSeparatorMenuItems` as it should. _But it's missing_ in `ReaderFooter:genItemSymbolsMenuItems`, that why the text is cropped when I switch to compact symbols.

You're right the "no separator" size changes depending on the prefix: https://github.com/koreader/koreader/blob/93bffb8222bd71422d9fed10600150e028e60b9f/frontend/apps/reader/modules/readerfooter.lua#L2118 I had a hard time figuring out why I had this cropped text.

Same issue here, btw: https://github.com/koreader/koreader/blob/481d35d8e04d76b912360570e253ccea1ab5ac17/frontend/apps/reader/modules/readerfooter.lua#L2040 A `self.separator_width = nil` is missing. If not the status bar's text might be cropped too when loaded.

Here's a [version that refreshes the clock when needed](https://github.com/sebdelsol/KOReader.patches/blob/main/2-filemanager-titlebar.lua) (switch it on with `autorefresh_time = true` in `config`).

Here's a [new version](https://github.com/sebdelsol/KOReader.patches/blob/main/2-filemanager-titlebar.lua) with menus: **` Title bar menu in the file manager:`** **` Sub menus (all settings are saved):`** **` Choose which title bar items to show:`** **`...

Thanks a lot, I was not aware of `sub_item_table_func()`. It did the trick. I only rearrange the menu items' order after the user exit from the `SortWidget`. No need to...

Thanks, it's simpler this way. The trick was indeed to call `TouchMenu:updateItems()` after updating the `sub_item_table`. EDIT : the updated user patch with its menus is [**_here_**](https://github.com/sebdelsol/KOReader.patches/blob/main/2-filemanager-titlebar.lua)

My bad, the default configuration was broken. Please download [this new version](https://github.com/sebdelsol/KOReader.patches/blob/main/2-filemanager-titlebar.lua). In your case (again, my bad), under `Title Bar > Configure Title Bar > Item Separator`, there will...

[Here's a new version](https://github.com/sebdelsol/KOReader.patches/blob/main/2-filemanager-titlebar.lua) that lets you configure the number of spaces around the separators and customize your own separator. EDIT: A screen rotation caused the title bar to disappear...