Branch: refs/heads/master Author: Jiří Techet techet@gmail.com Committer: GitHub noreply@github.com Date: Wed, 15 Jan 2025 15:08:55 UTC Commit: 1206c1bb035157963e46469bf3d0ab34494b8cf1 https://github.com/geany/geany/commit/1206c1bb035157963e46469bf3d0ab34494b8c...
Log Message: ----------- Merge pull request #4195 from techee/pref_size
Set some reasonable minimum width for the preferences dialog
Modified Paths: -------------- src/prefs.c
Modified: src/prefs.c 1 lines changed, 1 insertions(+), 0 deletions(-) =================================================================== @@ -1646,6 +1646,7 @@ void prefs_show_dialog(void) ui_widgets.prefs_dialog = create_prefs_dialog(); gtk_widget_set_name(ui_widgets.prefs_dialog, "GeanyPrefsDialog"); gtk_window_set_transient_for(GTK_WINDOW(ui_widgets.prefs_dialog), GTK_WINDOW(main_widgets.window)); + gtk_widget_set_size_request(ui_widgets.prefs_dialog, 600, -1);
/* init the file encoding combo boxes */ {
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).