From 641794d45859329852f699b9bb41511650371879 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Sun, 17 Feb 2013 14:10:45 -0500 Subject: [PATCH] layout: Reword a comment I don't even know what this was trying to say before... --- js/ui/layout.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/ui/layout.js b/js/ui/layout.js index 29c3f0ea6..1a9a328a7 100644 --- a/js/ui/layout.js +++ b/js/ui/layout.js @@ -1186,7 +1186,8 @@ const PressureBarrier = new Lang.Class({ let isOverview = ((Main.keybindingMode & (Shell.KeyBindingMode.OVERVIEW)) != 0); - // Throw out events where the grab is taken by the overview visible + // Throw out events where the grab is taken by something that's + // not the overview (modal dialogs, etc.) if (event.grabbed && !isOverview) return;