Skip to content
Snippets Groups Projects
Commit 3be78a13 authored by Pospelov, Gennady's avatar Pospelov, Gennady
Browse files

Fancy palette is temporarily removed from WelcomeView and SimulationView

parent c2482268
No related branches found
No related tags found
No related merge requests found
......@@ -97,10 +97,10 @@ SimulationSetupWidget::SimulationSetupWidget(QWidget *parent)
runSimulationButton->setMinimumHeight(50);
runSimulationButton->setToolTip("Run the simulation using settings above.\n"
" Global shortcut ctrl-r can be used to run from sample view.");
QPalette palette = runSimulationButton->palette();
palette.setColor(QPalette::Button, QColor(Constants::BUTTON_COLOR));
palette.setColor(QPalette::ButtonText, QColor(Constants::BUTTON_TEXT_COLOR));
runSimulationButton->setPalette(palette);
// QPalette palette = runSimulationButton->palette();
// palette.setColor(QPalette::Button, QColor(Constants::BUTTON_COLOR));
// palette.setColor(QPalette::ButtonText, QColor(Constants::BUTTON_TEXT_COLOR));
// runSimulationButton->setPalette(palette);
// export simulation to a python script
exportToPyScriptButton = new QPushButton(tr("Export to Python Script"));
......@@ -109,7 +109,7 @@ SimulationSetupWidget::SimulationSetupWidget(QWidget *parent)
exportToPyScriptButton->setMinimumHeight(50);
exportToPyScriptButton->setToolTip("Export the simulation using settings above to "
"a python script.\n");
exportToPyScriptButton->setPalette(palette);
// exportToPyScriptButton->setPalette(palette);
simButtonLayout->addStretch();
simButtonLayout->addWidget(runSimulationButton);
......
......@@ -56,24 +56,24 @@ WelcomeView::WelcomeView(MainWindow *parent)
m_newProjectButton->setMinimumWidth(buttonWidth);
m_newProjectButton->setMinimumHeight(buttonHeight);
m_newProjectButton->setFont(buttonFont);
QPalette button_palette = m_newProjectButton->palette();
button_palette.setColor(QPalette::Button, QColor(Constants::BUTTON_COLOR));
button_palette.setColor(QPalette::ButtonText, QColor(Constants::BUTTON_TEXT_COLOR));
m_newProjectButton->setPalette(button_palette);
// QPalette button_palette = m_newProjectButton->palette();
// button_palette.setColor(QPalette::Button, QColor(Constants::BUTTON_COLOR));
// button_palette.setColor(QPalette::ButtonText, QColor(Constants::BUTTON_TEXT_COLOR));
// m_newProjectButton->setPalette(button_palette);
m_newProjectButton->setToolTip("Create new project");
m_openProjectButton = new QPushButton(tr("Open Project"));
m_openProjectButton->setMinimumWidth(buttonWidth);
m_openProjectButton->setMinimumHeight(buttonHeight);
m_openProjectButton->setFont(buttonFont);
m_openProjectButton->setPalette(button_palette);
// m_openProjectButton->setPalette(button_palette);
m_openProjectButton->setToolTip("Open existing project");
m_newUsertButton = new QPushButton(tr("New to BornAgain?"));
m_newUsertButton->setMinimumWidth(buttonWidth);
m_newUsertButton->setMinimumHeight(buttonHeight);
m_newUsertButton->setFont(buttonFont);
m_newUsertButton->setPalette(button_palette);
// m_newUsertButton->setPalette(button_palette);
m_newUsertButton->setToolTip("Open BornAgain web site");
QVBoxLayout *buttonLayout = new QVBoxLayout;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment