diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-11-25 08:28:10 +0200 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-11-25 08:28:10 +0200 |
commit | f8d61470d6493f24ab31e93ffb3d40de7f6970d0 (patch) | |
tree | daa647a61c7af0af865da43bb55f5dacf77dd74c /src/ui | |
parent | 23441515e24bfec69f43d1e24588d269caeb076e (diff) |
Narrower set of line widths
Made the Normal line width slightly narrower, and adjusted the other settings accordingly.
Diffstat (limited to 'src/ui')
-rw-r--r-- | src/ui/util.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ui/util.c b/src/ui/util.c index 258da04a..541cf5d6 100644 --- a/src/ui/util.c +++ b/src/ui/util.c | |||
@@ -1105,10 +1105,10 @@ iWidget *makePreferences_Widget(void) { | |||
1105 | iWidget *widths = new_Widget(); | 1105 | iWidget *widths = new_Widget(); |
1106 | /* Line widths. */ { | 1106 | /* Line widths. */ { |
1107 | addRadioButton_(widths, "prefs.linewidth.30", "\u20132", "linewidth.set arg:30"); | 1107 | addRadioButton_(widths, "prefs.linewidth.30", "\u20132", "linewidth.set arg:30"); |
1108 | addRadioButton_(widths, "prefs.linewidth.35", "\u20131", "linewidth.set arg:35"); | 1108 | addRadioButton_(widths, "prefs.linewidth.34", "\u20131", "linewidth.set arg:34"); |
1109 | addRadioButton_(widths, "prefs.linewidth.40", "Normal", "linewidth.set arg:40"); | 1109 | addRadioButton_(widths, "prefs.linewidth.38", "Normal", "linewidth.set arg:38"); |
1110 | addRadioButton_(widths, "prefs.linewidth.45", "+1", "linewidth.set arg:45"); | 1110 | addRadioButton_(widths, "prefs.linewidth.43", "+1", "linewidth.set arg:43"); |
1111 | addRadioButton_(widths, "prefs.linewidth.50", "+2", "linewidth.set arg:50"); | 1111 | addRadioButton_(widths, "prefs.linewidth.48", "+2", "linewidth.set arg:48"); |
1112 | addRadioButton_(widths, "prefs.linewidth.1000", "Window", "linewidth.set arg:1000"); | 1112 | addRadioButton_(widths, "prefs.linewidth.1000", "Window", "linewidth.set arg:1000"); |
1113 | } | 1113 | } |
1114 | addChildFlags_Widget(values, iClob(widths), arrangeHorizontal_WidgetFlag | arrangeSize_WidgetFlag); | 1114 | addChildFlags_Widget(values, iClob(widths), arrangeHorizontal_WidgetFlag | arrangeSize_WidgetFlag); |