#724: Utilizar definitivamente la variable {{{ogactiveadmin}}} en lugar de {{{boot}}} para seleccionar el modo de arranque administrador del cliente, el cual no era detectado en distribuciones ogLive basadas en Ubuntu 15.10.
git-svn-id: https://opengnsys.es/svn/branches/version1.1@4896 a21b9725-9963-47de-94b9-378ad31fedc9remotes/github/master
parent
099ac5d4a5
commit
9608e6e669
|
@ -63,7 +63,7 @@ MainWindow::MainWindow(QWidget *parent)
|
|||
dock->setWidget(m_tabs);
|
||||
|
||||
// Y el dock al mainwindow
|
||||
if(m_env.contains("boot") && m_env["boot"] == "admin")
|
||||
if(m_env.contains("ogactiveadmin") && m_env["ogactiveadmin"] == "true")
|
||||
addDockWidget(Qt::BottomDockWidgetArea,dock);
|
||||
|
||||
// Top Dock
|
||||
|
@ -80,7 +80,7 @@ MainWindow::MainWindow(QWidget *parent)
|
|||
dock->setWidget(m_webBar);
|
||||
|
||||
// dock al mainwindow
|
||||
if(m_env.contains("boot") && m_env["boot"] == "admin")
|
||||
if(m_env.contains("ogactiveadmin") && m_env["ogactiveadmin"] == "true")
|
||||
addDockWidget(Qt::TopDockWidgetArea,dock);
|
||||
|
||||
// Status bar
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
#define COMMAND "command:"
|
||||
#define COMMAND_WITH_CONFIRMATION "commandwithconfirmation:"
|
||||
#define ENVIRONMENT "OGLOGFILE,boot"
|
||||
#define ENVIRONMENT "OGLOGFILE,ogactiveadmin"
|
||||
//#define ENVIRONMENT "OGIP,OGSERVER,OGLOG"
|
||||
|
||||
#include <QWidget>
|
||||
|
|
Loading…
Reference in New Issue