added new param-editing to APs and Beacons
changed drawing for better debuging changed layer editing option to add and delete layers some minor changes
This commit is contained in:
20
main.cpp
20
main.cpp
@@ -11,6 +11,26 @@ int main(int argc, char *argv[]) {
|
||||
|
||||
QApplication a(argc, argv);
|
||||
|
||||
QString str = R"(
|
||||
|
||||
QDockWidget {
|
||||
border: 1px solid #000;
|
||||
}
|
||||
|
||||
QDockWidget::title {
|
||||
text-align: left; /* align the text to the left */
|
||||
background: #ccc;
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
QDockWidget::title:hover {
|
||||
background: #bbb;
|
||||
}
|
||||
|
||||
)";
|
||||
|
||||
a.setStyleSheet(str);
|
||||
|
||||
MainController mc;
|
||||
mc.show();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user