diff options
Diffstat (limited to 'src/ui/util.c')
-rw-r--r-- | src/ui/util.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/ui/util.c b/src/ui/util.c index bdc1c813..52107d81 100644 --- a/src/ui/util.c +++ b/src/ui/util.c | |||
@@ -878,6 +878,22 @@ iWidget *makePreferences_Widget(void) { | |||
878 | addChild_Widget(headings, iClob(makeHeading_Widget("UI scale factor:"))); | 878 | addChild_Widget(headings, iClob(makeHeading_Widget("UI scale factor:"))); |
879 | setId_Widget(addChild_Widget(values, iClob(new_InputWidget(8))), "prefs.uiscale"); | 879 | setId_Widget(addChild_Widget(values, iClob(new_InputWidget(8))), "prefs.uiscale"); |
880 | } | 880 | } |
881 | /* Layout. */ { | ||
882 | appendTwoColumnPage_(tabs, "Layout", &headings, &values); | ||
883 | addChild_Widget(headings, iClob(makeHeading_Widget("Line width:"))); | ||
884 | addChild_Widget(values, iClob(new_LabelWidget("Normal", 0, 0, NULL))); | ||
885 | addChild_Widget(headings, iClob(makeHeading_Widget("First paragaph:"))); | ||
886 | addChild_Widget(values, iClob(new_LabelWidget("Emphasized", 0, 0, NULL))); | ||
887 | } | ||
888 | /* Colors. */ { | ||
889 | appendTwoColumnPage_(tabs, "Colors", &headings, &values); | ||
890 | addChild_Widget(headings, iClob(makeHeading_Widget("Saturation:"))); | ||
891 | addChild_Widget(values, iClob(new_LabelWidget("Full", 0, 0, 0))); | ||
892 | addChild_Widget(headings, iClob(makeHeading_Widget("Dark theme:"))); | ||
893 | addChild_Widget(values, iClob(new_LabelWidget("Colorful", 0, 0, 0))); | ||
894 | addChild_Widget(headings, iClob(makeHeading_Widget("Light theme:"))); | ||
895 | addChild_Widget(values, iClob(new_LabelWidget("White", 0, 0, 0))); | ||
896 | } | ||
881 | /* Proxies. */ { | 897 | /* Proxies. */ { |
882 | appendTwoColumnPage_(tabs, "Proxies", &headings, &values); | 898 | appendTwoColumnPage_(tabs, "Proxies", &headings, &values); |
883 | addChild_Widget(headings, iClob(makeHeading_Widget("Gopher proxy:"))); | 899 | addChild_Widget(headings, iClob(makeHeading_Widget("Gopher proxy:"))); |