Explorar el Código

hide start at boot option if not supported

master
Robin Thoni hace 10 años
padre
commit
e4636d1eca
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. 5
    0
      netsoul/dialogoptions.cpp

+ 5
- 0
netsoul/dialogoptions.cpp Ver fichero

@@ -15,6 +15,11 @@ DialogOptions::DialogOptions(QWidget *parent) : QDialog(parent), ui(new Ui::Dial
15 15
 	ui->spinAutoreconnectInterval->setValue(Options::instance()->getAutoReconnectInterval());
16 16
 	connect(this, SIGNAL(accepted()), this, SLOT(save()));
17 17
 
18
+#ifndef Q_OS_WIN
19
+	ui->checkStartAtBoot->hide();
20
+	ui->label->hide();
21
+#endif
22
+
18 23
 }
19 24
 
20 25
 DialogOptions::~DialogOptions()

Loading…
Cancelar
Guardar