xfce4-terminal/gxo-282.patch
Maurizio Galli 6283a9cd60 Accepting request 1145281 from home:manfred-h:X11:xfce
My last one on this issue, I swear!

- Update to version 1.1.2
  * Update copyright year
  * Update tooltip when hovering over a hyperlink
  * build: Align CFLAGS with LDADD
  * prefs-dialog: Add missing strings to translate (#222)
  * dropdown: Default dropdown-toggle-focus to false
  * Add runtime guard for XfceSMClient
  * build: Restrict XfceSMClient to X11
  * Determine cwd on FreeBSD in a native way instead of using linprocfs
  * window: Remove weak ref on prefs dialog in finalize()
  * build: Get rid of #ifdef G_ENABLE_DEBUG
  * Do not reconnect accels when closing last tab
  * build: Lower xfce4-dev-tools requirements to stable version
  * search-dialog: Use xfce_titled_dialog_set_default_response()
  * Translation Updates
- Update gxo-282.patch
- Add gxo-299.patch
  * backport fix for "paste unsafe text" dialog not popping up
    (gxo#apps/xfce4-terminal#299)

OBS-URL: https://build.opensuse.org/request/show/1145281
OBS-URL: https://build.opensuse.org/package/show/X11:xfce/xfce4-terminal?expand=0&rev=66
2024-02-13 02:57:34 +00:00

18 lines
625 B
Diff

diff -rup a/terminal/terminal-window.c b/terminal/terminal-window.c
--- a/terminal/terminal-window.c 2024-01-23 20:10:59.000000000 +0100
+++ b/terminal/terminal-window.c 2024-02-07 12:31:32.599468621 +0100
@@ -2573,11 +2573,11 @@ terminal_window_do_close_tab (TerminalSc
gtk_notebook_set_current_page (notebook, page_num);
}
- gtk_widget_destroy (GTK_WIDGET (screen));
-
/* reconnect the accels of the active terminal */
if (screen != window->priv->active)
terminal_screen_widget_append_accels (window->priv->active, window->priv->accel_group);
+
+ gtk_widget_destroy (GTK_WIDGET (screen));
}