File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -254,6 +254,8 @@ changes (where available).
254254
255255### Bug Fixes
256256
257+ - Expanded width of preference boxes Lua Options so that long input is visible.
258+
257259- N/A
258260
259261### Add action support for Lua
Original file line number Diff line number Diff line change @@ -692,6 +692,7 @@ static int register_pref_sub(lua_State *L)
692692 dt_conf_set_string (pref_name , built_elt -> type_data .string_data .default_value );
693693
694694 built_elt -> widget = gtk_entry_new ();
695+ gtk_widget_set_hexpand (built_elt -> widget , TRUE);
695696 built_elt -> tooltip_reset = g_strdup_printf ( _ ("double-click to reset to `%s'" ),
696697 built_elt -> type_data .string_data .default_value );
697698 g_object_ref_sink (G_OBJECT (built_elt -> widget ));
You can’t perform that action at this time.
0 commit comments