f8c4f0bd66
Fix positioning in the activity bar.
9 lines
196 B
Python
9 lines
196 B
Python
from gettext import gettext as _
|
|
|
|
from sugar.activity.Activity import Activity
|
|
|
|
class GroupChatActivity(Activity):
|
|
def __init__(self):
|
|
Activity.__init__(self)
|
|
self.set_title(_('Group chat'))
|