Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
5f322e47
Commit
5f322e47
authored
Apr 23, 2013
by
Lorenz Meier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Small runtime fixes
parent
18511a93
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
configuration.h
src/configuration.h
+1
-1
MainWindow.cc
src/ui/MainWindow.cc
+1
-1
QGCHilConfiguration.cc
src/ui/QGCHilConfiguration.cc
+1
-1
No files found.
src/configuration.h
View file @
5f322e47
...
...
@@ -12,7 +12,7 @@
#define WITH_TEXT_TO_SPEECH 1
#define QGC_APPLICATION_NAME "QGroundControl"
#define QGC_APPLICATION_VERSION "v. 1.0.
2
(beta)"
#define QGC_APPLICATION_VERSION "v. 1.0.
5
(beta)"
namespace
QGC
...
...
src/ui/MainWindow.cc
View file @
5f322e47
...
...
@@ -236,7 +236,7 @@ MainWindow::MainWindow(QWidget *parent):
const
int
screenWidth
=
QApplication
::
desktop
()
->
width
();
const
int
screenHeight
=
QApplication
::
desktop
()
->
height
();
if
(
screenWidth
<
1
4
00
)
if
(
screenWidth
<
1
5
00
)
{
resize
(
screenWidth
,
screenHeight
-
80
);
show
();
...
...
src/ui/QGCHilConfiguration.cc
View file @
5f322e47
...
...
@@ -22,10 +22,10 @@ QGCHilConfiguration::QGCHilConfiguration(UAS *mav, QWidget *parent) :
settings
.
beginGroup
(
"QGC_HILCONFIG"
);
if
(
i
>
0
)
{
on_simComboBox_currentIndexChanged
(
i
);
ui
->
simComboBox
->
blockSignals
(
true
);
ui
->
simComboBox
->
setCurrentIndex
(
i
);
ui
->
simComboBox
->
blockSignals
(
false
);
on_simComboBox_currentIndexChanged
(
i
);
}
settings
.
endGroup
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment