mirror of
https://github.com/arsenetar/dupeguru.git
synced 2026-03-12 19:41:38 +00:00
Compare commits
6 Commits
4.1.1
...
e6c791ab0a
| Author | SHA1 | Date | |
|---|---|---|---|
| e6c791ab0a | |||
|
|
78f5088101 | ||
|
|
095df5eb95 | ||
| 0840104edf | |||
|
|
6b4b436251 | ||
|
|
d18b8c10ec |
4
macos.md
4
macos.md
@@ -11,7 +11,7 @@
|
||||
1. Install Xcode if desired
|
||||
2. Install [Homebrew][homebrew], if not on the path after install (arm based Macs) create `~/.zshrc`
|
||||
with `export PATH="/opt/homebrew/bin:$PATH"`. Will need to reload terminal or source the file to take
|
||||
affect.
|
||||
effect.
|
||||
3. Install qt5 with `brew`. If you are using a version of macos without system python 3.6+ then you will
|
||||
also need to install that via brew or with pyenv.
|
||||
|
||||
@@ -50,4 +50,4 @@ be installed to run unit tests: `pip install -r requirements-extra.txt`.
|
||||
|
||||
[python]: http://www.python.org/
|
||||
[homebrew]: https://brew.sh/
|
||||
[xcode]: https://developer.apple.com/xcode/
|
||||
[xcode]: https://developer.apple.com/xcode/
|
||||
|
||||
@@ -271,6 +271,9 @@ 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
|
||||
|
||||
@@ -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 not native decoration so we force it to dock for now
|
||||
# has no 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
|
||||
|
||||
@@ -19,7 +19,6 @@ tr = trget("ui")
|
||||
class DetailsDialog(DetailsDialogBase):
|
||||
def __init__(self, parent, app):
|
||||
self.vController = None
|
||||
self.app = app
|
||||
super().__init__(parent, app)
|
||||
|
||||
def _setupUi(self):
|
||||
|
||||
Reference in New Issue
Block a user