File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments