From db5843a0f0b84f6eda90e4a710dc0a000459d116 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Drahn=C3=ADk?= Date: Mon, 30 Oct 2023 23:41:38 +0100 Subject: [PATCH] Save current tabs, tab-zooms when is focus in (necessary when was closed another terminal) --- src/MainWindow.vala | 1 + 1 file changed, 1 insertion(+) diff --git a/src/MainWindow.vala b/src/MainWindow.vala index 7980e47eca..1fdb5179fe 100644 --- a/src/MainWindow.vala +++ b/src/MainWindow.vala @@ -248,6 +248,7 @@ namespace Terminal { if (focus_timeout == 0) { focus_timeout = Timeout.add (20, () => { focus_timeout = 0; + save_opened_terminals_with_zooms (); return Source.REMOVE; }); }