summaryrefslogtreecommitdiffstats
path: root/src/schemes
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-11-08 11:51:27 (EST)
committer Patrick McDermott <pj@pehjota.net>2017-11-08 11:51:27 (EST)
commitfbd780ab7483b5bded72ab6a9cb012941637b8c8 (patch)
treefdf68aacaab0adb3fc2c5f3cccdc9fef71302cff /src/schemes
parentb886c3998f96ac3b41781022f983446c2798f15b (diff)
downloadmarquee-fbd780ab7483b5bded72ab6a9cb012941637b8c8.zip
marquee-fbd780ab7483b5bded72ab6a9cb012941637b8c8.tar.gz
marquee-fbd780ab7483b5bded72ab6a9cb012941637b8c8.tar.bz2
about:preferences: Update mq_html_input_text() calls
Diffstat (limited to 'src/schemes')
-rw-r--r--src/schemes/about/preferences.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/schemes/about/preferences.c b/src/schemes/about/preferences.c
index 34de67b..518ec6f 100644
--- a/src/schemes/about/preferences.c
+++ b/src/schemes/about/preferences.c
@@ -44,9 +44,9 @@ save_pref(gchar *key, gchar *value, MqConfig *config)
#define GEN_DBL( NAME, LABEL, MIN, STEP, MAX) mq_html_input_number_d( \
NAME, LABEL, MIN, STEP, MAX, mq_config_get_double(config, NAME))
#define GEN_STR( NAME, LABEL) mq_html_input_text(NAME, LABEL, \
- mq_config_get_string(config, NAME))
+ mq_config_get_string(config, NAME), FALSE)
#define GEN_STRL(NAME, LABEL) mq_html_input_text(NAME, LABEL, \
- mq_config_get_string(config, NAME))
+ mq_config_get_string(config, NAME), FALSE)
#define GEN_SLCT(NAME, LABEL, ...) mq_html_input_select(NAME, LABEL, \
mq_config_get_string(config, NAME), NULL, NULL, __VA_ARGS__, NULL)