[Xfce4-commits] [apps/xfce4-terminal] 01/01: Resolve unintended window resizing issue for GTK>=3.20

noreply at xfce.org noreply at xfce.org
Wed Jun 22 17:27:13 CEST 2016


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 9ae3930f349e45e5d1cf2a8b2065b23b12caabb0
Author: Igor <f2404 at yandex.ru>
Date:   Wed Jun 22 18:27:06 2016 +0300

    Resolve unintended window resizing issue for GTK>=3.20
---
 terminal/terminal-screen.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/terminal/terminal-screen.c b/terminal/terminal-screen.c
index 90827fb..10df84c 100644
--- a/terminal/terminal-screen.c
+++ b/terminal/terminal-screen.c
@@ -1748,6 +1748,10 @@ terminal_screen_force_resize_window (TerminalScreen *screen,
   glong          char_width;
   glong          char_height;
 
+#if GTK_CHECK_VERSION (3,20,0)
+  // Don't need this on gtk>=3.20
+  return;
+#endif
 
   terminal_return_if_fail (TERMINAL_IS_SCREEN (screen));
   terminal_return_if_fail (VTE_IS_TERMINAL (screen->terminal));

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list