Adopt naming to functionality changes
This commit is contained in:
parent
876eb3e292
commit
6c43e80c45
@ -1,7 +1,7 @@
|
|||||||
sugardir = $(pkgdatadir)/shell/view/frame
|
sugardir = $(pkgdatadir)/shell/view/frame
|
||||||
sugar_PYTHON = \
|
sugar_PYTHON = \
|
||||||
__init__.py \
|
__init__.py \
|
||||||
ActivitiesBox.py \
|
activitiestray.py \
|
||||||
activitybutton.py \
|
activitybutton.py \
|
||||||
clipboardbox.py \
|
clipboardbox.py \
|
||||||
clipboardpanelwindow.py \
|
clipboardpanelwindow.py \
|
||||||
|
@ -46,7 +46,7 @@ class InviteButton(TrayButton):
|
|||||||
def get_invite(self):
|
def get_invite(self):
|
||||||
return self._invite
|
return self._invite
|
||||||
|
|
||||||
class ActivitiesBox(hippo.CanvasBox):
|
class ActivitiesTray(hippo.CanvasBox):
|
||||||
def __init__(self, shell):
|
def __init__(self, shell):
|
||||||
hippo.CanvasBox.__init__(self, orientation=hippo.ORIENTATION_HORIZONTAL)
|
hippo.CanvasBox.__init__(self, orientation=hippo.ORIENTATION_HORIZONTAL)
|
||||||
|
|
@ -26,7 +26,7 @@ from sugar.graphics import palettegroup
|
|||||||
from sugar.clipboard import clipboardservice
|
from sugar.clipboard import clipboardservice
|
||||||
|
|
||||||
from view.frame.eventarea import EventArea
|
from view.frame.eventarea import EventArea
|
||||||
from view.frame.ActivitiesBox import ActivitiesBox
|
from view.frame.activitiestray import ActivitiesTray
|
||||||
from view.frame.zoomtoolbar import ZoomToolbar
|
from view.frame.zoomtoolbar import ZoomToolbar
|
||||||
from view.frame.overlaybox import OverlayBox
|
from view.frame.overlaybox import OverlayBox
|
||||||
from view.frame.friendstray import FriendsTray
|
from view.frame.friendstray import FriendsTray
|
||||||
@ -219,7 +219,7 @@ class Frame(object):
|
|||||||
def _create_bottom_panel(self):
|
def _create_bottom_panel(self):
|
||||||
panel = self._create_panel(gtk.POS_BOTTOM)
|
panel = self._create_panel(gtk.POS_BOTTOM)
|
||||||
|
|
||||||
box = ActivitiesBox(self._shell)
|
box = ActivitiesTray(self._shell)
|
||||||
panel.append(box, hippo.PACK_EXPAND)
|
panel.append(box, hippo.PACK_EXPAND)
|
||||||
|
|
||||||
return panel
|
return panel
|
||||||
|
Loading…
Reference in New Issue
Block a user