Branch: refs/heads/master Author: Enrico Tröger enrico.troeger@uvena.de Committer: GitHub noreply@github.com Date: Sat, 28 Oct 2023 11:19:02 UTC Commit: b7dd861941218b340abc5edf8e344907135ec721 https://github.com/geany/geany/commit/b7dd861941218b340abc5edf8e344907135ec7...
Log Message: ----------- Increase the default width for the sidebar (#3637)
This should prevent the sidebar from being cutoff or clipped of the window. The new value is about 25% of the default window width.
Closes #3630.
Modified Paths: -------------- src/keyfile.c
Modified: src/keyfile.c 3 lines changed, 2 insertions(+), 1 deletions(-) =================================================================== @@ -1140,6 +1140,7 @@ static void load_ui_prefs(GKeyFile *config) scribble_pos = utils_get_setting_integer(config, PACKAGE, "scribble_pos", -1); }
+ static void load_ui_session(GKeyFile *config) { gint *geo; @@ -1165,7 +1166,7 @@ static void load_ui_session(GKeyFile *config) ui_prefs.geometry[3] = MAX(-1, geo[3]); ui_prefs.geometry[4] = geo[4] != 0; } - hpan_position = utils_get_setting_integer(config, PACKAGE, "treeview_position", 156); + hpan_position = utils_get_setting_integer(config, PACKAGE, "treeview_position", 230); vpan_position = utils_get_setting_integer(config, PACKAGE, "msgwindow_position", (geo) ? (GEANY_MSGWIN_HEIGHT + geo[3] - 440) : (GEANY_MSGWIN_HEIGHT + GEANY_WINDOW_DEFAULT_HEIGHT - 440));
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).