1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2025-08-30 12:39:42 +00:00

Compare commits

..

No commits in common. "0840104edf5a23cd8de3deb16470546054880239" and "4a40b346a4a224cbebcaaefc2883620ace41d547" have entirely different histories.

3 changed files with 2 additions and 4 deletions

View File

@ -271,9 +271,6 @@ class DupeGuru(QObject):
self.willSavePrefs.emit()
self.prefs.save()
self.model.save()
# Workaround for #857, hide() or close().
if self.details_dialog is not None:
self.details_dialog.close()
QApplication.quit()
# --- Signals

View File

@ -51,7 +51,7 @@ class DetailsDialog(QDockWidget):
if not self.titleBarWidget(): # default title bar
self.setTitleBarWidget(QWidget()) # disables title bar
# Windows (and MacOS?) users cannot move a floating window which
# has no native decoration so we force it to dock for now
# has not native decoration so we force it to dock for now
if not ISLINUX:
self.setFloating(False)
elif self.titleBarWidget() is not None: # title bar is disabled

View File

@ -19,6 +19,7 @@ tr = trget("ui")
class DetailsDialog(DetailsDialogBase):
def __init__(self, parent, app):
self.vController = None
self.app = app
super().__init__(parent, app)
def _setupUi(self):