Skip to content

Commit 28442ca

Browse files
Merge branch 'main' into lenemter/use-real-accent-color
2 parents 76629d9 + 9defe95 commit 28442ca

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

data/gala.metainfo.xml.in

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,18 @@
2727
<update_contact>contact_at_elementary.io</update_contact>
2828

2929
<releases>
30+
<release version="8.2.4" date="2025-06-12" urgency="medium">
31+
<description>
32+
<p>Improvements:</p>
33+
<ul>
34+
<li>Updated translations</li>
35+
</ul>
36+
</description>
37+
<issues>
38+
<issue url="https://github.com/elementary/gala/issues/2438">Gala randomly segfaults while closing Libreoffice windows</issue>
39+
</issues>
40+
</release>
41+
3042
<release version="8.2.3" date="2025-05-20" urgency="medium">
3143
<description>
3244
<p>Improvements:</p>

src/WindowStateSaver.vala

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,10 @@ public class Gala.WindowStateSaver : GLib.Object {
147147
var app_id = GLib.Markup.escape_text (window_tracker.get_app_for_window (window).id);
148148

149149
var window_index = find_window_index (window, app_id);
150-
app_windows[app_id].remove_index (window_index);
150+
if (window_index < app_windows[app_id].length) {
151+
app_windows[app_id].remove_index (window_index);
152+
}
153+
151154
var value = null; // insert_val requires lvalue
152155
app_windows[app_id].insert_val (window_index, value);
153156

0 commit comments

Comments
 (0)