Skip to content

Commit 9af6589

Browse files
committed
fixed flaoting dockwidget on start, removed cmd line window when launching bundled app
1 parent 4d55c62 commit 9af6589

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/actions/install-windows-deps/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ runs:
1313
uses: actions/cache@v4
1414
with:
1515
path: ${{ runner.workspace }}/vcpkg_installed
16-
key: ${{ runner.os }}-vcpkg-export-66c0373d-x64-vs2022-v2
16+
key: ${{ runner.os }}-vcpkg-export-66c0373d-x64-vs2022-v3
1717

1818
- name: Download and Install vcpkg
1919
if: steps.cache-vcpkg.outputs.cache-hit != 'true'

app/src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ ENDIF()
3434
IF(APPLE AND BUILD_AS_BUNDLE)
3535
ADD_EXECUTABLE(rtabmap_app MACOSX_BUNDLE ${SRC_FILES})
3636
ELSEIF(WIN32 AND BUILD_AS_BUNDLE)
37-
ADD_EXECUTABLE(rtabmap_app ${SRC_FILES})
37+
ADD_EXECUTABLE(rtabmap_app WIN32 ${SRC_FILES})
3838
ELSE()
3939
ADD_EXECUTABLE(rtabmap_app ${SRC_FILES})
4040
ENDIF()

guilib/src/ui/mainWindow.ui

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@
494494
</widget>
495495
<widget class="QDockWidget" name="dockWidget_statsV2">
496496
<property name="floating">
497-
<bool>true</bool>
497+
<bool>false</bool>
498498
</property>
499499
<property name="windowTitle">
500500
<string>Statistics</string>
@@ -893,7 +893,7 @@
893893
</widget>
894894
<widget class="QDockWidget" name="dockWidget_mapVisibility">
895895
<property name="floating">
896-
<bool>true</bool>
896+
<bool>false</bool>
897897
</property>
898898
<property name="windowTitle">
899899
<string>Map visibility</string>

0 commit comments

Comments
 (0)