diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/schemes/about/preferences.c | 4 |
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) |