Merge pull request #1155 from jrjackso/jrjackso-patch-1

Fix spelling of Clipboard
This commit is contained in:
ThomasV 2015-04-25 10:54:26 +02:00
commit 06ab5d8107
1 changed files with 1 additions and 1 deletions

View File

@ -373,7 +373,7 @@ class ButtonsWidget(QWidget):
def addCopyButton(self, app):
self.app = app
f = lambda: self.app.clipboard().setText(str(self.text()))
self.addButton(":icons/copy.png", f, _("Copy to Clibboard"))
self.addButton(":icons/copy.png", f, _("Copy to Clipboard"))
class ButtonsLineEdit(QLineEdit, ButtonsWidget):
def __init__(self, text=None):