64 self.on_createButton_clicked() |
64 self.on_createButton_clicked() |
65 |
65 |
66 @pyqtSlot() |
66 @pyqtSlot() |
67 def on_createButton_clicked(self): |
67 def on_createButton_clicked(self): |
68 """ |
68 """ |
69 Private slot handling the user pressing the create button |
69 Private slot handling the user pressing the create button. |
70 """ |
70 """ |
71 tagName = self.tagEdit.text().lower().strip() |
71 tagName = self.tagEdit.text().lower().strip() |
72 if tagName: |
72 if tagName: |
73 self.tag.emit(tagName) |
73 self.tag.emit(tagName) |