summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--res/about/version.gmi1
-rw-r--r--src/ui/sidebarwidget.c4
2 files changed, 5 insertions, 0 deletions
diff --git a/res/about/version.gmi b/res/about/version.gmi
index 905b0221..94965301 100644
--- a/res/about/version.gmi
+++ b/res/about/version.gmi
@@ -10,6 +10,7 @@
10* The "Miscellaneous Symbols and Arrows" Unicode block (U+2B00...U+2BFF) is accepted as custom link icons. 10* The "Miscellaneous Symbols and Arrows" Unicode block (U+2B00...U+2BFF) is accepted as custom link icons.
11* When mixing Emoji into preformatted text (glyphs are from different fonts), lay out the Emoji as double-wide characters to avoid overlapping. 11* When mixing Emoji into preformatted text (glyphs are from different fonts), lay out the Emoji as double-wide characters to avoid overlapping.
12* Faster hover-scrolling of long popup menus. 12* Faster hover-scrolling of long popup menus.
13* Fixed sidebars not getting updated after identity addition/deletion.
13* Fixed "Paste Preceding Line" not being undoable. 14* Fixed "Paste Preceding Line" not being undoable.
14* Fixed lookup of missing glyphs. Fontpack priorities are now applied as documented. 15* Fixed lookup of missing glyphs. Fontpack priorities are now applied as documented.
15* Fixed animation issue with sidebars in the right side of split view. 16* Fixed animation issue with sidebars in the right side of split view.
diff --git a/src/ui/sidebarwidget.c b/src/ui/sidebarwidget.c
index da0ec22c..da377ac2 100644
--- a/src/ui/sidebarwidget.c
+++ b/src/ui/sidebarwidget.c
@@ -1392,6 +1392,10 @@ static iBool processEvent_SidebarWidget_(iSidebarWidget *d, const SDL_Event *ev)
1392 } 1392 }
1393 } 1393 }
1394 } 1394 }
1395 else if (equal_Command(cmd, "idents.changed") && d->mode == identities_SidebarMode) {
1396 updateItems_SidebarWidget_(d);
1397 return iTrue;
1398 }
1395 else if (isPortraitPhone_App() && isVisible_Widget(w) && d->side == left_SidebarSide && 1399 else if (isPortraitPhone_App() && isVisible_Widget(w) && d->side == left_SidebarSide &&
1396 equal_Command(cmd, "swipe.forward")) { 1400 equal_Command(cmd, "swipe.forward")) {
1397 postCommand_App("sidebar.toggle"); 1401 postCommand_App("sidebar.toggle");