mirror of
https://github.com/lalbornoz/roar.git
synced 2024-11-01 21:36:37 +00:00
bb23efac56
libroar/RoarCanvasCommands{,Edit,File,Help,Tools}.py: remove self.accels[]. libroar/RoarClient.py: updated.
23 lines
613 B
Python
23 lines
613 B
Python
#!/usr/bin/env python3
|
|
#
|
|
# RoarCanvasCommandsHelp.py
|
|
# Copyright (c) 2018, 2019 Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de>
|
|
#
|
|
|
|
from GuiFrame import GuiCommandDecorator
|
|
from RoarWindowAbout import RoarWindowAbout
|
|
|
|
class RoarCanvasCommandsHelp():
|
|
# {{{ canvasAbout(self, event)
|
|
@GuiCommandDecorator("About", "&About", None, None, True)
|
|
def canvasAbout(self, event):
|
|
RoarWindowAbout(self.parentFrame)
|
|
# }}}
|
|
|
|
#
|
|
# __init__(self)
|
|
def __init__(self):
|
|
self.menus, self.toolBars = (("&Help", self.canvasAbout,),), ()
|
|
|
|
# vim:expandtab foldmethod=marker sw=4 ts=4 tw=0
|