diff options
author | Chris Xiong <chirs241097@gmail.com> | 2022-09-19 10:54:03 -0400 |
---|---|---|
committer | Chris Xiong <chirs241097@gmail.com> | 2022-09-19 10:54:03 -0400 |
commit | 8ff8e237823b585cb0171700467328e4a7c5b2d6 (patch) | |
tree | 2ae8b096e4113302f260aa96c09fe1cb4ece508e /qdeduper | |
parent | 3aca10232a1cf1f8abbebcc39c46ba2779feed9a (diff) | |
download | deduper-8ff8e237823b585cb0171700467328e4a7c5b2d6.tar.xz |
Fix file listing progress not being displayed.
Diffstat (limited to 'qdeduper')
-rw-r--r-- | qdeduper/mingui.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/qdeduper/mingui.cpp b/qdeduper/mingui.cpp index c10be0c..f409187 100644 --- a/qdeduper/mingui.cpp +++ b/qdeduper/mingui.cpp @@ -56,8 +56,11 @@ QString fsstr_to_qstring(const fs::path::string_type &s) #endif } +Q_DECLARE_METATYPE(fs::path) + DeduperMainWindow::DeduperMainWindow() { + qRegisterMetaType<fs::path>(); this->setFont(QFontDatabase::systemFont(QFontDatabase::SystemFont::FixedFont)); this->setWindowTitle("deduper"); this->setup_menu(); |