mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-24 22:15:57 +03:00
Fix Explorer integration: Hide option on non-Windows
Signed-off-by: Michael Schuster <michael@schuster.ms>
This commit is contained in:
parent
f1dd312b2e
commit
40767f7ae0
1 changed files with 3 additions and 0 deletions
|
@ -100,6 +100,9 @@ GeneralSettings::GeneralSettings(QWidget *parent)
|
||||||
if (QOperatingSystemVersion::current() < QOperatingSystemVersion::Windows10)
|
if (QOperatingSystemVersion::current() < QOperatingSystemVersion::Windows10)
|
||||||
#endif
|
#endif
|
||||||
_ui->showInExplorerNavigationPaneCheckBox->setVisible(false);
|
_ui->showInExplorerNavigationPaneCheckBox->setVisible(false);
|
||||||
|
#else
|
||||||
|
// Hide on non-Windows
|
||||||
|
_ui->showInExplorerNavigationPaneCheckBox->setVisible(false);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Set the left contents margin of the layout to zero to make the checkboxes
|
/* Set the left contents margin of the layout to zero to make the checkboxes
|
||||||
|
|
Loading…
Reference in a new issue