1
0

qt qrtextedit: also show icon in ShowQRTextEdit.contextMenu

follow-up 955986d024
This commit is contained in:
SomberNight
2022-07-12 15:33:28 +02:00
parent 436360db10
commit 44655bcca2

View File

@@ -19,7 +19,7 @@ class ShowQRTextEdit(ButtonsTextEdit):
def contextMenuEvent(self, e):
m = self.createStandardContextMenu()
m.addAction(_("Show as QR code"), self.on_qr_show_btn)
m.addAction(read_QIcon(get_iconname_qrcode()), _("Show as QR code"), self.on_qr_show_btn)
m.exec_(e.globalPos())