Skip to content

Commit dfae554

Browse files
committed
Major stability improvements
1 parent 4fa6562 commit dfae554

18 files changed

+2216
-418
lines changed

demo-log.txt

+1,663
Large diffs are not rendered by default.

images/style-dev.css

-205
This file was deleted.

images/style-mission.css

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
QWidget#colorIcon {}
22

33
QWidget {
4-
background-color: #151518;
4+
background-color: #050508;
55
color: #DDDDDF;
66
background-clip: border;
77
font-size: 11px;
88
}
99

1010
QGroupBox {
11-
border: 1px solid #777777;
11+
border: 1px solid #66666B;
1212
border-radius: 3px;
1313
padding: 10px 0px 0px 0px;
1414
margin-top: 1ex; /* leave space at the top for the title */
@@ -107,11 +107,11 @@ QPushButton {
107107
font-weight: bold;
108108
min-height: 18px;
109109
max-height: 32px;
110-
border: 1px solid #EEEEEE;
110+
border: 2px solid #4A4A4F;
111111
border-radius: 5px;
112112
padding-left: 10px;
113113
padding-right: 10px;
114-
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #303030, stop: 1 #202020);
114+
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #232228, stop: 1 #020208);
115115
}
116116

117117
QPushButton:checked {
@@ -186,20 +186,20 @@ QPushButton:pressed#killButton {
186186

187187
QPushButton#controlButton {
188188
min-height: 25px;
189-
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #b76f11, stop: 1 #e1a718);
189+
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #A0AE00, stop: 1 #909E00);
190190
}
191191

192192
QPushButton:checked#controlButton {
193193
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #b76f11, stop: 1 #e1a718);
194194
}
195195

196196
QProgressBar {
197-
border: 1px solid white;
197+
border: 1px solid #EEEEEE;
198198
border-radius: 4px;
199199
text-align: center;
200200
padding: 2px;
201201
color: white;
202-
background-color: #111111;
202+
background-color: #111118;
203203
}
204204

205205
QProgressBar:horizontal {

mavground.pro

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ HEADERS += src/MG.h \
7878
src/configuration.h \
7979
src/ui/uas/UASView.h \
8080
src/ui/CameraView.h \
81-
src/comm/MavlinkSimulationLink.h \
81+
src/comm/MAVLinkSimulationLink.h \
8282
src/comm/UDPLink.h \
8383
src/ui/ParameterInterface.h \
8484
src/ui/WaypointList.h \
@@ -129,7 +129,7 @@ SOURCES += src/main.cc \
129129
src/ui/linechart/ScrollZoomer.cc \
130130
src/ui/uas/UASView.cc \
131131
src/ui/CameraView.cc \
132-
src/comm/MavlinkSimulationLink.cc \
132+
src/comm/MAVLinkSimulationLink.cc \
133133
src/comm/UDPLink.cc \
134134
src/ui/ParameterInterface.cc \
135135
src/ui/WaypointList.cc \

0 commit comments

Comments
 (0)