Bulk metadata edit dialog: Fix a regression that broke changing case

This commit is contained in:
Kovid Goyal 2022-03-18 16:52:19 +05:30
parent 4225ab51a5
commit a74e172940
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -54,6 +54,9 @@ class Caser(LineEditECM):
def setText(self, text):
self.title = text
def hasSelectedText(self):
return False
class MyBlockingBusy(QDialog): # {{{