summaryrefslogtreecommitdiff
path: root/src/app.c
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-05-18 06:57:18 +0300
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-05-18 15:01:13 +0300
commit88e1a4667d981bf7d87f1e4052a7671a960351da (patch)
treeb9807b832fc328a16b874c521fa4d657fadc1ab6 /src/app.c
parent54882a015e4ea880fb817f013609a3f8411db725 (diff)
SidebarWidget: Don't animate at launch
Diffstat (limited to 'src/app.c')
-rw-r--r--src/app.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app.c b/src/app.c
index 526c7752..6c559f33 100644
--- a/src/app.c
+++ b/src/app.c
@@ -420,8 +420,8 @@ static iBool loadState_App_(iApp *d) {
420 if (deviceType_App() != phone_AppDeviceType) { 420 if (deviceType_App() != phone_AppDeviceType) {
421 setWidth_SidebarWidget(sidebar, widths[0]); 421 setWidth_SidebarWidget(sidebar, widths[0]);
422 setWidth_SidebarWidget(sidebar2, widths[1]); 422 setWidth_SidebarWidget(sidebar2, widths[1]);
423 if (flags & 1) postCommand_Root(root, "sidebar.toggle"); 423 if (flags & 1) postCommand_Root(root, "sidebar.toggle noanim:1");
424 if (flags & 2) postCommand_Root(root, "sidebar2.toggle"); 424 if (flags & 2) postCommand_Root(root, "sidebar2.toggle noanim:1");
425 } 425 }
426 } 426 }
427 } 427 }