Hello community, here is the log from the commit of package gnome-terminal for openSUSE:Factory checked in at 2018-12-19 13:23:24 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnome-terminal (Old) and /work/SRC/openSUSE:Factory/.gnome-terminal.new.28833 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-terminal" Wed Dec 19 13:23:24 2018 rev:122 rq:656604 version:3.30.2 Changes: -------- --- /work/SRC/openSUSE:Factory/gnome-terminal/gnome-terminal.changes 2018-11-08 09:44:54.905351469 +0100 +++ /work/SRC/openSUSE:Factory/.gnome-terminal.new.28833/gnome-terminal.changes 2018-12-19 13:23:25.645381101 +0100 @@ -1,0 +2,9 @@ +Fri Dec 7 17:49:45 UTC 2018 - [email protected] + +- Add upstream bug fix patches: + + gnome-terminal-Comment-out-tab-dragging-description.patch: + help: Comment out tab dragging description. + + gnome-terminal-window-Fix-zoom-out-sensitivity.patch: window: + Fix zoom-out sensitivity. + +------------------------------------------------------------------- New: ---- gnome-terminal-Comment-out-tab-dragging-description.patch gnome-terminal-window-Fix-zoom-out-sensitivity.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnome-terminal.spec ++++++ --- /var/tmp/diff_new_pack.e3frvI/_old 2018-12-19 13:23:26.153380482 +0100 +++ /var/tmp/diff_new_pack.e3frvI/_new 2018-12-19 13:23:26.157380476 +0100 @@ -24,6 +24,10 @@ Group: System/X11/Terminals URL: https://wiki.gnome.org/Apps/Terminal Source0: https://download.gnome.org/sources/gnome-terminal/3.30/%{name}-%{version}.tar.xz +# PATCH-FIX-UPSTREAM gnome-terminal-Comment-out-tab-dragging-description.patch -- help: Comment out tab dragging description +Patch0: gnome-terminal-Comment-out-tab-dragging-description.patch +# PATCH-FIX-UPSTREAM gnome-terminal-window-Fix-zoom-out-sensitivity.patch - window: Fix zoom-out sensitivity +Patch1: gnome-terminal-window-Fix-zoom-out-sensitivity.patch BuildRequires: fdupes # Needed for search provider. It should not be needed in my opionion, we have to take this up with upstream, or just provide search provider interface definition file as source. ++++++ gnome-terminal-Comment-out-tab-dragging-description.patch ++++++ >From 34e3afa46e28de044e1a5094b6e319da2fa423d1 Mon Sep 17 00:00:00 2001 From: Christian Persch <[email protected]> Date: Thu, 25 Oct 2018 16:49:55 +0200 Subject: [PATCH] help: Comment out tab dragging description Dragging tabs is currently disabled. (cherry picked from commit adf7e5cf90907372cc7da878fcae302d5d6e4674) --- help/C/gs-tabs.page | 2 ++ 1 file changed, 2 insertions(+) diff --git a/help/C/gs-tabs.page b/help/C/gs-tabs.page index 283f8476..cd89476b 100644 --- a/help/C/gs-tabs.page +++ b/help/C/gs-tabs.page @@ -127,6 +127,7 @@ </section> + <!-- <section id="move-tab-another-window"> <title>Move a tab to another <app>Terminal</app> window</title> @@ -171,5 +172,6 @@ </item> </steps> </section> + --> </page> -- 2.18.1 ++++++ gnome-terminal-window-Fix-zoom-out-sensitivity.patch ++++++ >From 9143c23baec5eb361fbc01199fa8e62997dc14d2 Mon Sep 17 00:00:00 2001 From: Christian Persch <[email protected]> Date: Sat, 3 Nov 2018 21:07:02 +0100 Subject: [PATCH] window: Fix zoom-out sensitivity https://gitlab.gnome.org/GNOME/gnome-terminal/issues/47 (cherry picked from commit 7a57e7d3ca5468ebab92a080abf8159bf96e23e1) --- src/terminal-window.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/terminal-window.c b/src/terminal-window.c index 4ed36474..f968c8be 100644 --- a/src/terminal-window.c +++ b/src/terminal-window.c @@ -1514,12 +1514,14 @@ terminal_window_update_zoom_sensitivity (TerminalWindow *window) if (screen == NULL) return; - double zoom = vte_terminal_get_font_scale (VTE_TERMINAL (screen)); - + double v; + double zoom = v = vte_terminal_get_font_scale (VTE_TERMINAL (screen)); g_simple_action_set_enabled (lookup_action (window, "zoom-in"), - find_larger_zoom_factor (&zoom)); + find_larger_zoom_factor (&v)); + + v = zoom; g_simple_action_set_enabled (lookup_action (window, "zoom-out"), - find_smaller_zoom_factor (&zoom)); + find_smaller_zoom_factor (&v)); } static void -- 2.18.1
