def keyPressEvent (self, event): if event.key() == Qt.Key_Escape: self.command.end_edit_item(True) else: QLineEdit.keyPressEvent(self, event)
def keyPressEvent(self, event): if event.key() == Qt.Key_Escape: self.command.end_edit_item(True) else: QLineEdit.keyPressEvent(self, event)
def __init__(self, command): QLineEdit.__init__(self) self.command = command