diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-09-25 01:39:13 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-09-25 01:39:13 -0500 |
commit | 56c745993be1bc9cd42a6eaaaf1486e3156018ad (patch) | |
tree | f4e73106913466b99c0576eaaf3b5e1ffa4d43f4 /ui/qt5/partitionmountpage.hh | |
parent | d6d057a50b097afcc0655517bb493dbc9045e646 (diff) | |
download | horizon-56c745993be1bc9cd42a6eaaaf1486e3156018ad.tar.gz horizon-56c745993be1bc9cd42a6eaaaf1486e3156018ad.tar.bz2 horizon-56c745993be1bc9cd42a6eaaaf1486e3156018ad.tar.xz horizon-56c745993be1bc9cd42a6eaaaf1486e3156018ad.zip |
Qt UI: Fix last remaining papercuts for Mac client
Diffstat (limited to 'ui/qt5/partitionmountpage.hh')
-rw-r--r-- | ui/qt5/partitionmountpage.hh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ui/qt5/partitionmountpage.hh b/ui/qt5/partitionmountpage.hh index d9a4939..0289e59 100644 --- a/ui/qt5/partitionmountpage.hh +++ b/ui/qt5/partitionmountpage.hh @@ -25,7 +25,10 @@ public: QStringList mountLines() const; private: QListWidget *mountList; - QPushButton *addMountButton, *delMountButton, *rescanButton; + QPushButton *addMountButton, *delMountButton; +#ifdef HAS_INSTALL_ENV + QPushButton *rescanButton; +#endif /* !HAS_INSTALL_ENV */ }; #endif /* !PARTITIONMOUNTPAGE_HH */ |