[omemo] Add Open Folder button
This commit is contained in:
committed by
Philipp Hörist
parent
683a4c95e3
commit
65ff1035a3
@@ -136,12 +136,19 @@ class FileDecryption:
|
|||||||
def _open_file():
|
def _open_file():
|
||||||
helpers.open_file(file.filepath)
|
helpers.open_file(file.filepath)
|
||||||
|
|
||||||
|
def _open_folder():
|
||||||
|
directory = os.path.dirname(file.filepath)
|
||||||
|
helpers.open_file(directory)
|
||||||
|
|
||||||
NewConfirmationDialog(
|
NewConfirmationDialog(
|
||||||
_('Open File'),
|
_('Open File'),
|
||||||
_('Open File?'),
|
_('Open File?'),
|
||||||
_('Do you want to open %s?') % file.filename,
|
_('Do you want to open %s?') % file.filename,
|
||||||
[DialogButton.make('Cancel',
|
[DialogButton.make('Cancel',
|
||||||
text=_('_No')),
|
text=_('_No')),
|
||||||
|
DialogButton.make('OK',
|
||||||
|
text=_('Open _Folder'),
|
||||||
|
callback=_open_folder),
|
||||||
DialogButton.make('Accept',
|
DialogButton.make('Accept',
|
||||||
text=_('_Open'),
|
text=_('_Open'),
|
||||||
callback=_open_file)],
|
callback=_open_file)],
|
||||||
|
|||||||
Reference in New Issue
Block a user