Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/view/frame/Frame.py
diff options
context:
space:
mode:
Diffstat (limited to 'shell/view/frame/Frame.py')
-rw-r--r--shell/view/frame/Frame.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/shell/view/frame/Frame.py b/shell/view/frame/Frame.py
index fd3c11e..37f28cb 100644
--- a/shell/view/frame/Frame.py
+++ b/shell/view/frame/Frame.py
@@ -23,6 +23,7 @@ from view.frame.ActivitiesBox import ActivitiesBox
from view.frame.ZoomBox import ZoomBox
from view.frame.overlaybox import OverlayBox
from view.frame.FriendsBox import FriendsBox
+from view.frame.ClipboardBox import ClipboardBox
from view.frame.PanelWindow import PanelWindow
from view.frame.notificationtray import NotificationTray
from view.frame.shutdownicon import ShutdownIcon
@@ -205,7 +206,10 @@ class Frame:
root.append(box)
# Left panel
- self._create_panel(grid, 0, 1, 1, 10)
+ [menu_shell, root] = self._create_panel(grid, 0, 1, 1, 10)
+
+ box = ClipboardBox(self, menu_shell)
+ root.append(box)
def _create_panel(self, grid, x, y, width, height):
panel = PanelWindow()