Skip to content

Commit

Permalink
Fixed some design issue with dark mode.
Browse files Browse the repository at this point in the history
  • Loading branch information
DorianBDev committed Nov 8, 2020
1 parent ed2a0f5 commit 6a04be4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/GUI/Dialog/NewProjectDialog.cc
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ namespace degate

// Size
if (parent != nullptr)
resize(500, parent->size().height() * 0.70);
resize(600, parent->size().height() * 0.70);
}

Project_shptr NewProjectDialog::get_project()
Expand Down
4 changes: 2 additions & 2 deletions src/GUI/Widget/LayersEditWidget.cc
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,12 @@ namespace degate
{
if (value)
{
setStyleSheet("background-color: rgba(0, 25, 0, 255)");
setStyleSheet("background-color: rgba(0, 150, 0, 255)");
setText(tr("Image defined"));
}
else
{
setStyleSheet("background-color: rgba(25, 0, 0, 255)");
setStyleSheet("background-color: rgba(150, 0, 0, 255)");
setText(tr("No Image defined"));
}

Expand Down

0 comments on commit 6a04be4

Please sign in to comment.