Commit 2f6b249306e00fb89ed6387daa1bd2e22733b9b7
1 parent
8181c4e3
Exists in
master
and in
1 other branch
Adding default values for string properties.
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/terminal/properties/init.c
@@ -322,7 +322,7 @@ | @@ -322,7 +322,7 @@ | ||
322 | str_props[ix].name, | 322 | str_props[ix].name, |
323 | str_props[ix].name, | 323 | str_props[ix].name, |
324 | str_props[ix].description, | 324 | str_props[ix].description, |
325 | - FALSE, | 325 | + str_props[ix].default_value, |
326 | (str_props[ix].set == NULL ? G_PARAM_READABLE : (G_PARAM_READABLE|G_PARAM_WRITABLE)) | 326 | (str_props[ix].set == NULL ? G_PARAM_READABLE : (G_PARAM_READABLE|G_PARAM_WRITABLE)) |
327 | ); | 327 | ); |
328 | 328 |