diff options
Diffstat (limited to 'src/ui/util.c')
-rw-r--r-- | src/ui/util.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/ui/util.c b/src/ui/util.c index 60618181..41b8f65c 100644 --- a/src/ui/util.c +++ b/src/ui/util.c | |||
@@ -1837,8 +1837,9 @@ static iWidget *appendTwoColumnPage_(iWidget *tabs, const char *title, int short | |||
1837 | } | 1837 | } |
1838 | 1838 | ||
1839 | static void makeTwoColumnHeading_(const char *title, iWidget *headings, iWidget *values) { | 1839 | static void makeTwoColumnHeading_(const char *title, iWidget *headings, iWidget *values) { |
1840 | addChild_Widget(headings, | 1840 | addChildFlags_Widget(headings, |
1841 | iClob(makeHeading_Widget(format_CStr(uiHeading_ColorEscape "%s", title)))); | 1841 | iClob(makeHeading_Widget(format_CStr(uiHeading_ColorEscape "%s", title))), |
1842 | ignoreForParentWidth_WidgetFlag); | ||
1842 | addChild_Widget(values, iClob(makeHeading_Widget(""))); | 1843 | addChild_Widget(values, iClob(makeHeading_Widget(""))); |
1843 | } | 1844 | } |
1844 | 1845 | ||
@@ -1984,9 +1985,6 @@ iWidget *makePreferences_Widget(void) { | |||
1984 | setId_Widget(addChild_Widget(values, iClob(new_InputWidget(8))), "prefs.uiscale"); | 1985 | setId_Widget(addChild_Widget(values, iClob(new_InputWidget(8))), "prefs.uiscale"); |
1985 | addChild_Widget(headings, iClob(makeHeading_Widget("${prefs.retainwindow}"))); | 1986 | addChild_Widget(headings, iClob(makeHeading_Widget("${prefs.retainwindow}"))); |
1986 | addChild_Widget(values, iClob(makeToggle_Widget("prefs.retainwindow"))); | 1987 | addChild_Widget(values, iClob(makeToggle_Widget("prefs.retainwindow"))); |
1987 | makeTwoColumnHeading_("${heading.prefs.widelayout}", headings, values); | ||
1988 | addChild_Widget(headings, iClob(makeHeading_Widget("${prefs.sideicon}"))); | ||
1989 | addChild_Widget(values, iClob(makeToggle_Widget("prefs.sideicon"))); | ||
1990 | } | 1988 | } |
1991 | /* Colors. */ { | 1989 | /* Colors. */ { |
1992 | appendTwoColumnPage_(tabs, "${heading.prefs.colors}", '3', &headings, &values); | 1990 | appendTwoColumnPage_(tabs, "${heading.prefs.colors}", '3', &headings, &values); |
@@ -2063,6 +2061,9 @@ iWidget *makePreferences_Widget(void) { | |||
2063 | addChildFlags_Widget(values, iClob(quote), arrangeHorizontal_WidgetFlag | arrangeSize_WidgetFlag); | 2061 | addChildFlags_Widget(values, iClob(quote), arrangeHorizontal_WidgetFlag | arrangeSize_WidgetFlag); |
2064 | addChild_Widget(headings, iClob(makeHeading_Widget("${prefs.biglede}"))); | 2062 | addChild_Widget(headings, iClob(makeHeading_Widget("${prefs.biglede}"))); |
2065 | addChild_Widget(values, iClob(makeToggle_Widget("prefs.biglede"))); | 2063 | addChild_Widget(values, iClob(makeToggle_Widget("prefs.biglede"))); |
2064 | makeTwoColumnHeading_("${heading.prefs.widelayout}", headings, values); | ||
2065 | addChild_Widget(headings, iClob(makeHeading_Widget("${prefs.sideicon}"))); | ||
2066 | addChild_Widget(values, iClob(makeToggle_Widget("prefs.sideicon"))); | ||
2066 | } | 2067 | } |
2067 | /* Network. */ { | 2068 | /* Network. */ { |
2068 | appendTwoColumnPage_(tabs, "${heading.prefs.network}", '5', &headings, &values); | 2069 | appendTwoColumnPage_(tabs, "${heading.prefs.network}", '5', &headings, &values); |