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
ab0b7efb
Commit
ab0b7efb
authored
Jul 22, 2017
by
Don Gagne
Committed by
GitHub
Jul 22, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5488 from mavlink/pr-ftp-enable
Re-enable FTP in menu
parents
97eeed89
fbb112d0
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
12 deletions
+1
-12
UnitTestList.cc
src/qgcunittest/UnitTestList.cc
+1
-3
MainWindow.cc
src/ui/MainWindow.cc
+0
-9
No files found.
src/qgcunittest/UnitTestList.cc
View file @
ab0b7efb
...
...
@@ -52,6 +52,7 @@ UT_REGISTER_TEST(MissionControllerTest)
UT_REGISTER_TEST
(
MissionManagerTest
)
UT_REGISTER_TEST
(
RadioConfigTest
)
UT_REGISTER_TEST
(
TCPLinkTest
)
UT_REGISTER_TEST
(
FileManagerTest
)
UT_REGISTER_TEST
(
ParameterManagerTest
)
UT_REGISTER_TEST
(
MissionCommandTreeTest
)
UT_REGISTER_TEST
(
LogDownloadTest
)
...
...
@@ -69,8 +70,5 @@ UT_REGISTER_TEST(QGCMapPolygonTest)
// FIXME: Temporarily disabled until this can be stabilized
//UT_REGISTER_TEST(MainWindowTest)
// Onboard file support has been removed until it can be make to work correctly
//UT_REGISTER_TEST(FileManagerTest)
// Needs to be update for latest updates
//UT_REGISTER_TEST(MavlinkLogTest)
src/ui/MainWindow.cc
View file @
ab0b7efb
...
...
@@ -313,10 +313,6 @@ void MainWindow::_buildCommonWidgets(void)
// Populate widget menu
for
(
int
i
=
0
,
end
=
ARRAY_SIZE
(
rgDockWidgetNames
);
i
<
end
;
i
++
)
{
if
(
i
==
ONBOARD_FILES
)
{
// Temporarily removed until twe can fix all the problems with it
continue
;
}
const
char
*
pDockWidgetName
=
rgDockWidgetNames
[
i
];
...
...
@@ -333,11 +329,6 @@ void MainWindow::_buildCommonWidgets(void)
/// Shows or hides the specified dock widget, creating if necessary
void
MainWindow
::
_showDockWidget
(
const
QString
&
name
,
bool
show
)
{
if
(
name
==
rgDockWidgetNames
[
ONBOARD_FILES
])
{
// Temporarily disabled due to bugs
return
;
}
// Create the inner widget if we need to
if
(
!
_mapName2DockWidget
.
contains
(
name
))
{
if
(
!
_createInnerDockWidget
(
name
))
{
...
...
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