summaryrefslogtreecommitdiff
path: root/src/core/display.c
diff options
context:
space:
mode:
authorOwen W. Taylor <[email protected]>2015-08-20 13:58:07 +0200
committerinfirit <[email protected]>2015-08-20 14:00:31 +0200
commit105c6eb2116ab5db0157b272a22243bba1ae50ef (patch)
tree034dccea743716352ac174533ff88ca587879878 /src/core/display.c
parent4329a0666214c368715cb9804063cce5dbd44944 (diff)
downloadmarco-105c6eb2116ab5db0157b272a22243bba1ae50ef.tar.bz2
marco-105c6eb2116ab5db0157b272a22243bba1ae50ef.tar.xz
Fix crash when struts change during grab operation
Since meta_workspace_invalidate_work_area() frees the edges workspace->screen_edges and workspace->monitor_edges, we must clean up our cached edge resistance data when the invalidate_work_area() is called on the active workspace, or when the workspace changes. Make the computation of the edge resistance data lazy so that it will be recomputed the next time we try to access it. meta_display_compute_resistance_and_snapping_edges() is made private to edge-resistance.c Invaliding the data when active workspace changes also will improve correctness for edge resistance when the current workspace changes during a grab operation. (Even with this fix we still don't try to handle window positions changing during a grab operation; that can't cause a crash since, unlike screen and monitor edges, the window edges are freshly allocated, it will just cause slight oddness in that corner case.) Root cause tracked down due to much effort by Jon Nettleton. https://bugzilla.gnome.org/show_bug.cgi?id=608800
Diffstat (limited to 'src/core/display.c')
-rw-r--r--src/core/display.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/core/display.c b/src/core/display.c
index 6a4831fb..bcb262af 100644
--- a/src/core/display.c
+++ b/src/core/display.c
@@ -3662,18 +3662,6 @@ meta_display_begin_grab_op (MetaDisplay *display,
g_assert (display->grab_window != NULL || display->grab_screen != NULL);
g_assert (display->grab_op != META_GRAB_OP_NONE);
- /* If this is a move or resize, cache the window edges for
- * resistance/snapping
- */
- if (meta_grab_op_is_resizing (display->grab_op) ||
- meta_grab_op_is_moving (display->grab_op))
- {
- meta_topic (META_DEBUG_WINDOW_OPS,
- "Computing edges to resist-movement or snap-to for %s.\n",
- window->desc);
- meta_display_compute_resistance_and_snapping_edges (display);
- }
-
/* Save the old stacking */
if (GRAB_OP_IS_WINDOW_SWITCH (display->grab_op))
{