(self)
| 145 | layout.addWidget(self.msgButton) |
| 146 | |
| 147 | def onMsgShow(self): |
| 148 | msg = self.msgEdit.text().strip() |
| 149 | if not msg: |
| 150 | return |
| 151 | if hasattr(self, "_blabel"): |
| 152 | self._blabel.stop() |
| 153 | self._blabel.deleteLater() |
| 154 | del self._blabel |
| 155 | self._blabel = BubbleLabel() |
| 156 | self._blabel.setText(msg) |
| 157 | self._blabel.show() |
| 158 | |
| 159 | |
| 160 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected