Skip to content

Commit c4c978e

Browse files
wpfergusonTurboGit
authored andcommitted
lua/preferences.c - Expanded width of input fields so that more
input is visible. RELEASE_NOTES.md - added release note to Lua bug fixes section
1 parent 732a054 commit c4c978e

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

RELEASE_NOTES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

src/lua/preferences.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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));

0 commit comments

Comments
 (0)