summaryrefslogtreecommitdiff
path: root/src/ui/window.c
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2020-08-12 10:28:02 +0300
committerJaakko Keränen <jaakko.keranen@iki.fi>2020-08-12 10:28:02 +0300
commit1d54f7b990ea7f676403681577fc4df984cab0be (patch)
tree94a8ac83159f021dbbb354a6d76ecbaf83a63aad /src/ui/window.c
parent38e09f15ff3e9c4781236016bfbb0b0f9062590b (diff)
Save and load app state (tabs, history)
Diffstat (limited to 'src/ui/window.c')
-rw-r--r--src/ui/window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/window.c b/src/ui/window.c
index c68331a0..3a6b6e30 100644
--- a/src/ui/window.c
+++ b/src/ui/window.c
@@ -104,7 +104,7 @@ static iBool handleNavBarCommands_(iWidget *navBar, const char *cmd) {
104 setFlags_Widget( 104 setFlags_Widget(
105 child, tight_WidgetFlag, isNarrow || !cmp_String(id_Widget(child), "lock")); 105 child, tight_WidgetFlag, isNarrow || !cmp_String(id_Widget(child), "lock"));
106 if (isInstance_Object(i.object, &Class_LabelWidget)) { 106 if (isInstance_Object(i.object, &Class_LabelWidget)) {
107 iLabelWidget *label = (iLabelWidget *) i.object; 107 iLabelWidget *label = i.object;
108 updateSize_LabelWidget(label); 108 updateSize_LabelWidget(label);
109 } 109 }
110 } 110 }