Fix 'Accept' button in AirWingConfigurationDialog (#2318)

* Fix 'Accept' button in AirWingConfigurationDialog

- Fixes 'Accept' not saving changes
- Adds 'Reset' button (non-confirming)
- Adds confirmation pop-up when pressing [X]
This commit is contained in:
Raffson
2022-07-19 00:14:17 +02:00
committed by GitHub
parent a54c217f88
commit 52c0be63ea
2 changed files with 74 additions and 6 deletions

View File

@@ -208,6 +208,19 @@ QPushButton[style="btn-danger"]:hover{
background-color:#D84545;
}
QPushButton[style="btn-accept"] {
background-color:#82A466;
color: white;
padding: 6px;
border-radius:2px;
border: 1px solid #82A466;
}
QPushButton[style="btn-accept"]:hover {
background-color:#5C863F;
}
QPushButton:disabled{
background:#d6d6d6;