This commit is contained in:
Ignacio Serantes
2026-04-08 15:47:29 +02:00
parent bff99226b0
commit 07afab6ca3
10 changed files with 336 additions and 113 deletions

View File

@@ -14,7 +14,7 @@ Classes:
MainWindow: The main application window containing the thumbnail grid and docks.
"""
__appname__ = "BagheeraView"
__version__ = "0.9.18"
__version__ = "0.9.19"
__author__ = "Ignacio Serantes"
__email__ = "kde@aynoa.net"
__license__ = "LGPL"
@@ -1839,7 +1839,7 @@ class MainWindow(QMainWindow):
if paths is None:
QMessageBox.warning(
self, UITexts.WARNING,
"Whitelist is empty. Please configure it in Settings.")
UITexts.DUPLICATE_WHITELIST_EMPTY)
return
if not paths:
@@ -4666,7 +4666,7 @@ class MainWindow(QMainWindow):
menu.addSeparator()
action_other = menu.addAction(QIcon.fromTheme("applications-other"),
"Open with other application...")
UITexts.OPEN_WITH_OTHER)
action_other.triggered.connect(
lambda: self.open_with_system_chooser(full_path))
except Exception: