This is an automated email from the git hooks/post-receive script. f2404 pushed a commit to branch master in repository apps/xfce4-terminal.
commit efd7014503ff6f6530c93766bbb035a1afbfe48d Author: Igor <[email protected]> Date: Sat Jun 25 21:15:49 2016 +0300 Do not prevent the terminal from being resized in drop-down mode This caused weird issues when the terminal could be increased in size but couldn't be decreased, even to its original size. It seems the intention was to prevent the user from being able to resize the terminal; to me, this is still impossible even after removing the code line. --- terminal/terminal-window-dropdown.c | 1 - 1 file changed, 1 deletion(-) diff --git a/terminal/terminal-window-dropdown.c b/terminal/terminal-window-dropdown.c index acd88f1..3caba57 100644 --- a/terminal/terminal-window-dropdown.c +++ b/terminal/terminal-window-dropdown.c @@ -243,7 +243,6 @@ terminal_window_dropdown_init (TerminalWindowDropdown *dropdown) gtk_widget_show (dropdown->viewport); /* default window settings */ - gtk_window_set_resizable (GTK_WINDOW (dropdown), FALSE); gtk_window_set_decorated (GTK_WINDOW (dropdown), FALSE); gtk_window_set_gravity (GTK_WINDOW (dropdown), GDK_GRAVITY_STATIC); gtk_window_set_type_hint (GTK_WINDOW (dropdown), GDK_WINDOW_TYPE_HINT_NORMAL); -- To stop receiving notification emails like this one, please contact the administrator of this repository. _______________________________________________ Xfce4-commits mailing list [email protected] https://mail.xfce.org/mailman/listinfo/xfce4-commits
