diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-09-15 14:07:33 +0300 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-09-15 14:07:33 +0300 |
commit | 0f0eef8c4228b06c5388aa4ca9e02ab8efee8273 (patch) | |
tree | 80643db8e0b71328c54277b9c5ccf172772a8f7a /src/app.c | |
parent | 6580b4e2c396f2fdfb0fb017ec4249baa2fba5ff (diff) |
Mobile: Minor improvements
Fixed issues: scrollbar goes under toolbar, value input dialog grows too tall, Undo/Select All in the clip menu.
Diffstat (limited to 'src/app.c')
-rw-r--r-- | src/app.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -2756,6 +2756,9 @@ iBool handleCommand_App(const char *cmd) { | |||
2756 | else if (equal_Command(cmd, "document.changed")) { | 2756 | else if (equal_Command(cmd, "document.changed")) { |
2757 | /* Set of open tabs has changed. */ | 2757 | /* Set of open tabs has changed. */ |
2758 | postCommand_App("document.openurls.changed"); | 2758 | postCommand_App("document.openurls.changed"); |
2759 | if (deviceType_App() == phone_AppDeviceType) { | ||
2760 | showToolbar_Root(d->window->roots[0], iTrue); | ||
2761 | } | ||
2759 | return iFalse; | 2762 | return iFalse; |
2760 | } | 2763 | } |
2761 | else if (equal_Command(cmd, "ident.new")) { | 2764 | else if (equal_Command(cmd, "ident.new")) { |