From 5c60d8982e6894da71b426b6c42d5707814a41eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sat, 21 Aug 2010 10:39:06 +0200 Subject: [PATCH] [Overview] Fix zoom when dragging items from the dash Commit 4632db177 removed a required include statement, re-add it to fix DND from the dash. --- js/ui/overview.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/ui/overview.js b/js/ui/overview.js index 5187ca547..abf595352 100644 --- a/js/ui/overview.js +++ b/js/ui/overview.js @@ -8,6 +8,7 @@ const St = imports.gi.St; const Gettext = imports.gettext.domain('gnome-shell'); const _ = Gettext.gettext; +const GenericDisplay = imports.ui.genericDisplay; const Lightbox = imports.ui.lightbox; const Main = imports.ui.main; const Panel = imports.ui.panel;