diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-12-02 11:06:10 -0500 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2019-12-02 11:06:10 -0500 |
| commit | 2b4d7929769a91d9de30e1e10319d1c9cf0450af (patch) | |
| tree | d4079f23afddf317549cabc5479d492cb6a96e10 /src/modinfodialogfiletree.cpp | |
| parent | eabca00c35d7af3b6822bb7857ef1e073807ca0a (diff) | |
don't show the lock overlay for processes that are not hooked
starting exe from filetree is now hooked
usvfs progress dialog now on top of dialogs
Diffstat (limited to 'src/modinfodialogfiletree.cpp')
| -rw-r--r-- | src/modinfodialogfiletree.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/modinfodialogfiletree.cpp b/src/modinfodialogfiletree.cpp index 79ed4cba..00471a72 100644 --- a/src/modinfodialogfiletree.cpp +++ b/src/modinfodialogfiletree.cpp @@ -140,7 +140,10 @@ void FileTreeTab::onOpen() return; } - shell::Open(m_fs->filePath(selection)); + core().processRunner() + .setFromFile(parentWidget(), m_fs->filePath(selection)) + .setWaitForCompletion() + .run(); } void FileTreeTab::onPreview() |
