Branch: refs/heads/master Author: Skif-off Skif-off@users.noreply.github.com Committer: Skif-off Skif-off@users.noreply.github.com Date: Mon, 07 Oct 2024 14:54:47 UTC Commit: a35ba125d69f168eac654545fcf2f909954e74ec https://github.com/geany/geany-plugins/commit/a35ba125d69f168eac654545fcf2f9...
Log Message: ----------- FIX: GeanyLua: 'Choose' dialog size/appearance (b4n's patch from issues/690)
Modified Paths: -------------- geanylua/glspi_dlg.c
Modified: geanylua/glspi_dlg.c 4 lines changed, 3 insertions(+), 1 deletions(-) =================================================================== @@ -163,10 +163,12 @@ static gint glspi_choose(lua_State* L) scroll=gtk_scrolled_window_new(NULL, NULL); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scroll), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); + gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW (scroll), GTK_SHADOW_IN); gtk_container_add(GTK_CONTAINER(gtk_dialog_get_content_area(GTK_DIALOG(dialog))),scroll); + gtk_widget_set_vexpand(scroll, TRUE); gtk_container_add(GTK_CONTAINER(scroll),tree);
- gtk_widget_set_size_request(tree, 320, 240); + gtk_widget_set_size_request(scroll, 320, 240); gtk_widget_show_all(dialog); gtk_window_set_resizable(GTK_WINDOW(dialog), TRUE);
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).