Skip to content

Commit 6ecda78

Browse files
committed
Merge branch 'menu-roles' into release
2 parents de72db0 + bed7564 commit 6ecda78

8 files changed

+94
-46
lines changed

CMakeLists.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#
22
# Copyright 2012, 2013, 2014 Thomas Schöps
3-
# Copyright 2012-2017 Kai Pastor
3+
# Copyright 2012-2018 Kai Pastor
44
#
55
# This file is part of OpenOrienteering.
66
#
@@ -25,14 +25,14 @@ include(FeatureSummary)
2525

2626
# Project declaration
2727

28-
project(Mapper VERSION 0.8.1.1 LANGUAGES CXX C)
28+
project(Mapper VERSION 0.8.1.2 LANGUAGES CXX C)
2929

3030
if(Mapper_VERSION_DISPLAY)
3131
message(STATUS "Custom version display string: \"${Mapper_VERSION_DISPLAY}\"")
3232
elseif(CMAKE_BUILD_TYPE AND NOT CMAKE_BUILD_TYPE MATCHES "Release|MinSizeRel|RelWithDebInfo")
33-
set(Mapper_VERSION_DISPLAY "${CMAKE_BUILD_TYPE} ${Mapper_VERSION_MAJOR}.${Mapper_VERSION_MINOR}.${Mapper_VERSION_PATCH}")
33+
set(Mapper_VERSION_DISPLAY "${CMAKE_BUILD_TYPE} ${Mapper_VERSION}")
3434
else()
35-
set(Mapper_VERSION_DISPLAY "${Mapper_VERSION_MAJOR}.${Mapper_VERSION_MINOR}.${Mapper_VERSION_PATCH}")
35+
set(Mapper_VERSION_DISPLAY "${Mapper_VERSION}")
3636
endif()
3737

3838
set(Mapper_COPYRIGHT "(C) 2012-2018 The OpenOrienteering developers")

doc/api/Doxyfile.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright 2014 Kai Pastor
2+
# Copyright 2014, 2015, 2018 Kai Pastor
33
#
44
# This file is part of OpenOrienteering.
55
#
@@ -17,7 +17,7 @@
1717
# along with OpenOrienteering. If not, see <http://www.gnu.org/licenses/>.
1818

1919
PROJECT_NAME = "@PROJECT_NAME@"
20-
PROJECT_NUMBER = "@Mapper_VERSION_MAJOR@.@Mapper_VERSION_MINOR@.@Mapper_VERSION_PATCH@"
20+
PROJECT_NUMBER = "@Mapper_VERSION@"
2121
PROJECT_BRIEF = "API documentation"
2222
PROJECT_LOGO = "@CMAKE_CURRENT_SOURCE_DIR@/../openorienteering.png"
2323

doc/manual/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#
22
# Copyright 2012, 2013, 2014 Thomas Schöps
3-
# Copyright 2012-2017 Kai Pastor
3+
# Copyright 2012-2018 Kai Pastor
44
#
55
# This file is part of OpenOrienteering.
66
#
@@ -73,7 +73,7 @@ endif()
7373

7474
set(Mapper_COMPRESSED_HELP "Mapper ${Mapper_VERSION_DISPLAY} Manual.qch")
7575
set(Mapper_HELP_COLLECTION "Mapper ${Mapper_VERSION_DISPLAY} Manual.qhc")
76-
set(Mapper_HELP_NAMESPACE "openorienteering.mapper-${Mapper_VERSION_MAJOR}.${Mapper_VERSION_MINOR}.${Mapper_VERSION_PATCH}.help"
76+
set(Mapper_HELP_NAMESPACE "openorienteering.mapper-${Mapper_VERSION}.help"
7777
CACHE INTERNAL "The namespace where the current version's help will be located."
7878
)
7979
if(NOT MANUAL_SECTIONS)

packaging/CMakeLists.txt

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright 2012-2017 Kai Pastor
2+
# Copyright 2012-2018 Kai Pastor
33
#
44
# This file is part of OpenOrienteering.
55
#
@@ -107,12 +107,12 @@ else()
107107
set(_system_name "${CMAKE_SYSTEM_NAME}-unknown")
108108
endif()
109109
set(CPACK_PACKAGE_FILE_NAME
110-
"OpenOrienteering-Mapper-${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}-${_system_name}")
110+
"OpenOrienteering-Mapper-${Mapper_VERSION}-${_system_name}")
111111
set(CPACK_RESOURCE_FILE_LICENSE "${PROJECT_SOURCE_DIR}/COPYING")
112112
set(CPACK_STRIP_FILES "TRUE")
113113

114114
set(CPACK_SOURCE_PACKAGE_FILE_NAME
115-
"openorienteering-mapper_${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}-src")
115+
"openorienteering-mapper_${Mapper_VERSION}-src")
116116
set(CPACK_SOURCE_IGNORE_FILES
117117
"${PROJECT_BINARY_DIR}"
118118
"/[.]git/"
@@ -128,16 +128,16 @@ if(WIN32)
128128
# Packaging as ZIP archive
129129
set(CPACK_GENERATOR_DEFAULT "ZIP")
130130
#set(CPACK_INCLUDE_TOPLEVEL_DIRECTORY 0)
131-
set(CPACK_PACKAGE_INSTALL_DIRECTORY "${CPACK_PACKAGE_NAME} ${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}")
132-
set(CPACK_PACKAGE_EXECUTABLES "Mapper" "${CPACK_PACKAGE_NAME} ${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}")
131+
set(CPACK_PACKAGE_INSTALL_DIRECTORY "${CPACK_PACKAGE_NAME} ${Mapper_VERSION}")
132+
set(CPACK_PACKAGE_EXECUTABLES "Mapper" "${CPACK_PACKAGE_NAME} ${Mapper_VERSION}")
133133

134134
find_program(MAKENSIS_EXECUTABLE "makensis")
135135
if(MAKENSIS_EXECUTABLE)
136136
list(APPEND CPACK_GENERATOR_DEFAULT "NSIS")
137137
# The title displayed at the top of the installer
138138
set(CPACK_NSIS_PACKAGE_NAME "${CPACK_PACKAGE_NAME}")
139139
# The display name string that appears in the Windows Add/Remove Program control panel
140-
set(CPACK_NSIS_DISPLAY_NAME "${CPACK_PACKAGE_NAME} ${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}")
140+
set(CPACK_NSIS_DISPLAY_NAME "${CPACK_PACKAGE_NAME} ${Mapper_VERSION}")
141141
# NSIS start menu links will point to executables in this directory
142142
set(CPACK_NSIS_EXECUTABLES_DIRECTORY ".")
143143
# A path to the executable that contains the uninstaller icon.
@@ -160,7 +160,7 @@ if(WIN32)
160160
elseif(APPLE)
161161
set(MAPPER_MACOS_SUBDIR "/Mapper.app/Contents/MacOS")
162162
set(CPACK_GENERATOR_DEFAULT "DragNDrop")
163-
set(CPACK_PACKAGE_EXECUTABLES "Mapper" "OpenOrienteering Mapper ${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}")
163+
set(CPACK_PACKAGE_EXECUTABLES "Mapper" "OpenOrienteering Mapper ${Mapper_VERSION}")
164164
set(CPACK_PACKAGE_ICON "${PROJECT_SOURCE_DIR}/images/mapper-icon/Mapper.icns")
165165
set_target_properties(Mapper PROPERTIES
166166
MACOSX_BUNDLE_INFO_STRING "${CPACK_PACKAGE_DESCRIPTION_SUMMARY}"

packaging/src/CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright 2013, 2014 Kai Pastor
2+
# Copyright 2013, 2014, 2018 Kai Pastor
33
#
44
# This file is part of OpenOrienteering.
55
#
@@ -19,10 +19,10 @@
1919
message(STATUS "Configuring ${PROJECT_NAME} source packaging")
2020

2121
set(Mapper_Source_PREFIX
22-
"openorienteering-mapper-${Mapper_VERSION_MAJOR}.${Mapper_VERSION_MINOR}.${Mapper_VERSION_PATCH}")
22+
"openorienteering-mapper-${Mapper_VERSION}")
2323

2424
set(Mapper_Source_FILE_NAME
25-
"openorienteering-mapper_${Mapper_VERSION_MAJOR}.${Mapper_VERSION_MINOR}.${Mapper_VERSION_PATCH}-src")
25+
"openorienteering-mapper_${Mapper_VERSION}-src")
2626

2727
set(Mapper_Source_FORMAT tgz CACHE STRING
2828
"The archive format for source packages (see `git archive -l` for valid options)")

src/gui/main_window.cpp

+60-26
Original file line numberDiff line numberDiff line change
@@ -255,34 +255,57 @@ void MainWindow::setController(MainWindowController* new_controller, bool has_fi
255255
createHelpMenu();
256256

257257
#if defined(Q_OS_MACOS)
258-
// Defeat Qt's menu text heuristic, as a workaround for QTBUG-30812.
259-
// Changing an action's menu role (to QAction::NoRole) after it was
260-
// added to the menu is unsupported and triggers crashes (#1077).
261-
// Instead, we defeat the heuristic by adding a zero width space at the
262-
// beginning and the end of the text of every action in the menus.
263-
const auto menubar_actions = menuBar()->actions();
264-
for (auto action : menubar_actions)
265-
{
266-
if (const auto menu = action->menu())
267-
{
268-
const auto menu_actions = menu->actions();
269-
for (auto action : menu_actions)
270-
{
271-
static const auto zwsp = QString::fromUtf8("\u200B");
272-
action->setText(zwsp + action->text() + zwsp);
273-
}
274-
}
275-
}
276-
277-
// Needed to activate the menu bar changes
278258
if (isVisible() && qApp->activeWindow() == this)
279259
{
280260
// Force a menu synchronisation,
281261
// QCocoaMenuBar::updateMenuBarImmediately(),
282262
// via QCocoaNativeInterface::onAppFocusWindowChanged().
263+
/// \todo Review in Qt > 5.6
283264
qApp->focusWindowChanged(qApp->focusWindow());
284265
}
285-
#endif
266+
267+
# if defined(MAPPER_DEVELOPMENT_BUILD)
268+
{
269+
// Qt's menu text heuristic can assign unexpected platform specific roles,
270+
// which resulted in Mapper issue #1067. The only supported solution is
271+
// assigning QAction::NoRole) before adding items to the menubar.
272+
// Cf. QTBUG-30812.
273+
// However, the heuristic is required for some platform-specific items.
274+
// Cf. detectMenuRole() in qtbase/src/plugins/platforms/cocoa/messages.cpp
275+
const auto platform_keywords = {
276+
QCoreApplication::translate("QCocoaMenuItem", "Cut"),
277+
QCoreApplication::translate("QCocoaMenuItem", "Copy"),
278+
QCoreApplication::translate("QCocoaMenuItem", "Paste"),
279+
QCoreApplication::translate("QCocoaMenuItem", "Select All")
280+
};
281+
const auto menubar_actions = menuBar()->actions();
282+
for (auto menubar_action : menubar_actions)
283+
{
284+
if (const auto menu = menubar_action->menu())
285+
{
286+
const auto menu_actions = menu->actions();
287+
for (auto action : menu_actions)
288+
{
289+
if (action->menuRole() != QAction::TextHeuristicRole
290+
|| action->isSeparator())
291+
continue;
292+
const auto text = action->text().remove(QLatin1Char('&'));
293+
if (std::none_of(begin(platform_keywords), end(platform_keywords), [&text](const auto& keyword) {
294+
return keyword.compare(text, Qt::CaseInsensitive) == 0;
295+
}))
296+
{
297+
// Such warnings may indiciate missing setting of QAction::NoRole
298+
// on a (new) item, or incomplete translations for Mapper or Qt.
299+
qDebug("Unexpected TextHeuristicRole for \"%s > %s\"",
300+
qUtf8Printable(menubar_action->text()),
301+
qUtf8Printable(action->text()));
302+
}
303+
}
304+
}
305+
}
306+
}
307+
# endif // MAPPER_DEVELOPMENT_BUILD
308+
#endif // Q_OS_MACOS
286309

287310
setHasAutosaveConflict(false);
288311
setHasUnsavedChanges(false);
@@ -291,18 +314,21 @@ void MainWindow::setController(MainWindowController* new_controller, bool has_fi
291314
void MainWindow::createFileMenu()
292315
{
293316
QAction* new_act = new QAction(QIcon(QString::fromLatin1(":/images/new.png")), tr("&New"), this);
317+
new_act->setMenuRole(QAction::NoRole);
294318
new_act->setShortcuts(QKeySequence::New);
295319
new_act->setStatusTip(tr("Create a new map"));
296320
new_act->setWhatsThis(Util::makeWhatThis("file_menu.html"));
297321
connect(new_act, &QAction::triggered, this, &MainWindow::showNewMapWizard);
298322

299323
QAction* open_act = new QAction(QIcon(QString::fromLatin1(":/images/open.png")), tr("&Open..."), this);
324+
open_act->setMenuRole(QAction::NoRole);
300325
open_act->setShortcuts(QKeySequence::Open);
301326
open_act->setStatusTip(tr("Open an existing file"));
302327
open_act->setWhatsThis(Util::makeWhatThis("file_menu.html"));
303328
connect(open_act, &QAction::triggered, this, &MainWindow::showOpenDialog);
304329

305330
open_recent_menu = new QMenu(tr("Open &recent"), this);
331+
open_recent_menu->menuAction()->setMenuRole(QAction::NoRole);
306332
open_recent_menu->setWhatsThis(Util::makeWhatThis("file_menu.html"));
307333
for (auto& action : recent_file_act)
308334
{
@@ -314,11 +340,13 @@ void MainWindow::createFileMenu()
314340
// NOTE: if you insert something between open_recent_menu and save_act, adjust updateRecentFileActions()!
315341

316342
save_act = new QAction(QIcon(QString::fromLatin1(":/images/save.png")), tr("&Save"), this);
343+
save_act->setMenuRole(QAction::NoRole);
317344
save_act->setShortcuts(QKeySequence::Save);
318345
save_act->setWhatsThis(Util::makeWhatThis("file_menu.html"));
319346
connect(save_act, &QAction::triggered, this, &MainWindow::save);
320347

321348
auto save_as_act = new QAction(tr("Save &as..."), this);
349+
save_as_act->setMenuRole(QAction::NoRole);
322350
if (QKeySequence::keyBindings(QKeySequence::SaveAs).empty())
323351
save_as_act->setShortcut(tr("Ctrl+Shift+S"));
324352
else
@@ -327,20 +355,21 @@ void MainWindow::createFileMenu()
327355
connect(save_as_act, &QAction::triggered, this, &MainWindow::showSaveAsDialog);
328356

329357
settings_act = new QAction(tr("Settings..."), this);
330-
settings_act->setShortcut(QKeySequence::Preferences);
331358
settings_act->setMenuRole(QAction::PreferencesRole);
359+
settings_act->setShortcut(QKeySequence::Preferences);
332360
connect(settings_act, &QAction::triggered, this, &MainWindow::showSettings);
333361

334362
close_act = new QAction(QIcon(QString::fromLatin1(":/images/close.png")), tr("Close"), this);
363+
close_act->setMenuRole(QAction::NoRole);
335364
close_act->setShortcut(QKeySequence::Close);
336365
close_act->setStatusTip(tr("Close this file"));
337366
close_act->setWhatsThis(Util::makeWhatThis("file_menu.html"));
338367
connect(close_act, &QAction::triggered, this, &MainWindow::closeFile);
339368

340369
QAction* exit_act = new QAction(tr("E&xit"), this);
370+
exit_act->setMenuRole(QAction::QuitRole);
341371
exit_act->setShortcuts(QKeySequence::Quit);
342372
exit_act->setStatusTip(tr("Exit the application"));
343-
exit_act->setMenuRole(QAction::QuitRole);
344373
exit_act->setWhatsThis(Util::makeWhatThis("file_menu.html"));
345374
connect(exit_act, &QAction::triggered, qApp, &QApplication::closeAllWindows);
346375

@@ -381,25 +410,30 @@ void MainWindow::createHelpMenu()
381410
{
382411
// Help menu
383412
QAction* manualAct = new QAction(QIcon(QString::fromLatin1(":/images/help.png")), tr("Open &Manual"), this);
413+
manualAct->setMenuRole(QAction::NoRole);
384414
manualAct->setStatusTip(tr("Show the help file for this application"));
385415
manualAct->setShortcut(QKeySequence::HelpContents);
386416
connect(manualAct, &QAction::triggered, this, &MainWindow::showHelp);
387417

388418
QAction* aboutAct = new QAction(tr("&About %1").arg(appName()), this);
389-
aboutAct->setStatusTip(tr("Show information about this application"));
390419
aboutAct->setMenuRole(QAction::AboutRole);
420+
aboutAct->setStatusTip(tr("Show information about this application"));
391421
connect(aboutAct, &QAction::triggered, this, &MainWindow::showAbout);
392422

393423
QAction* aboutQtAct = new QAction(tr("About &Qt"), this);
394-
aboutQtAct->setStatusTip(tr("Show information about Qt"));
395424
aboutQtAct->setMenuRole(QAction::AboutQtRole);
425+
aboutQtAct->setStatusTip(tr("Show information about Qt"));
396426
connect(aboutQtAct, &QAction::triggered, qApp, QApplication::aboutQt);
397427

398428
if (show_menu)
399429
{
400430
QMenu* helpMenu = menuBar()->addMenu(tr("&Help"));
401431
helpMenu->addAction(manualAct);
402-
helpMenu->addAction(QWhatsThis::createAction(this));
432+
helpMenu->addAction([this] {
433+
auto action = QWhatsThis::createAction(this);
434+
action->setMenuRole(QAction::NoRole);
435+
return action;
436+
}());
403437
helpMenu->addSeparator();
404438
helpMenu->addAction(aboutAct);
405439
helpMenu->addAction(aboutQtAct);

src/gui/map/map_editor.cpp

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2012, 2013 Thomas Schöps
3-
* Copyright 2012-2017 Kai Pastor
3+
* Copyright 2012-2018 Kai Pastor
44
*
55
* This file is part of OpenOrienteering.
66
*
@@ -750,6 +750,7 @@ QAction* MapEditorController::newAction(const char* id, const QString &tr_text,
750750
if (whats_this_link) action->setWhatsThis(Util::makeWhatThis(whats_this_link));
751751
if (receiver) QObject::connect(action, SIGNAL(triggered()), receiver, slot);
752752
actionsById[id] = action;
753+
action->setMenuRole(QAction::NoRole);
753754
return action;
754755
}
755756

@@ -858,8 +859,11 @@ void MapEditorController::createActions()
858859
undo_act = newAction("undo", tr("Undo"), this, SLOT(undo()), "undo.png", tr("Undo the last step"), "edit_menu.html");
859860
redo_act = newAction("redo", tr("Redo"), this, SLOT(redo()), "redo.png", tr("Redo the last step"), "edit_menu.html");
860861
cut_act = newAction("cut", tr("Cu&t"), this, SLOT(cut()), "cut.png", QString{}, "edit_menu.html");
862+
cut_act->setMenuRole(QAction::TextHeuristicRole);
861863
copy_act = newAction("copy", tr("C&opy"), this, SLOT(copy()), "copy.png", QString{}, "edit_menu.html");
864+
copy_act->setMenuRole(QAction::TextHeuristicRole);
862865
paste_act = newAction("paste", tr("&Paste"), this, SLOT(paste()), "paste", QString{}, "edit_menu.html");
866+
paste_act->setMenuRole(QAction::TextHeuristicRole);
863867
delete_act = newAction("delete", tr("Delete"), this, SLOT(deleteClicked()), "delete.png", QString{}, "toolbars.html#delete");
864868
select_all_act = newAction("select-all", tr("Select all"), this, SLOT(selectAll()), nullptr, QString{}, "edit_menu.html");
865869
select_nothing_act = newAction("select-nothing", tr("Select nothing"), this, SLOT(selectNothing()), nullptr, QString{}, "edit_menu.html");
@@ -926,6 +930,7 @@ void MapEditorController::createActions()
926930
cut_hole_circle_act = newToolAction("cutholecircle", tr("Cut round hole"), this, SLOT(cutHoleCircleClicked()), "tool-cut-hole.png", QString{}, "toolbars.html#cut_hole");
927931
cut_hole_rectangle_act = newToolAction("cutholerectangle", tr("Cut rectangular hole"), this, SLOT(cutHoleRectangleClicked()), "tool-cut-hole.png", QString{}, "toolbars.html#cut_hole");
928932
cut_hole_menu = new QMenu(tr("Cut hole"));
933+
cut_hole_menu->menuAction()->setMenuRole(QAction::NoRole);
929934
cut_hole_menu->setIcon(QIcon(QString::fromLatin1(":/images/tool-cut-hole.png")));
930935
cut_hole_menu->addAction(cut_hole_act);
931936
cut_hole_menu->addAction(cut_hole_circle_act);
@@ -947,11 +952,13 @@ void MapEditorController::createActions()
947952
distribute_points_act = newAction("distributepoints", tr("Distribute points along path"), this, SLOT(distributePointsClicked()), "tool-distribute-points.png", QString{}, "toolbars.html#distribute_points"); // TODO: write documentation
948953

949954
paint_on_template_act = new QAction(QIcon(QString::fromLatin1(":/images/pencil.png")), tr("Paint on template"), this);
955+
paint_on_template_act->setMenuRole(QAction::NoRole);
950956
paint_on_template_act->setCheckable(true);
951957
paint_on_template_act->setWhatsThis(Util::makeWhatThis("toolbars.html#draw_on_template"));
952958
connect(paint_on_template_act, &QAction::triggered, this, &MapEditorController::paintOnTemplateClicked);
953959

954960
paint_on_template_settings_act = new QAction(QIcon(QString::fromLatin1(":/images/paint-on-template-settings.png")), tr("Paint on template settings"), this);
961+
paint_on_template_settings_act->setMenuRole(QAction::NoRole);
955962
paint_on_template_settings_act->setWhatsThis(Util::makeWhatThis("toolbars.html#draw_on_template"));
956963
connect(paint_on_template_settings_act, &QAction::triggered, this, &MapEditorController::paintOnTemplateSelectClicked);
957964

@@ -1022,6 +1029,7 @@ void MapEditorController::createMenuAndToolbars()
10221029
file_menu->insertAction(insertion_act, import_act);
10231030
#ifdef QT_PRINTSUPPORT_LIB
10241031
QMenu* export_menu = new QMenu(tr("&Export as..."), file_menu);
1032+
export_menu->menuAction()->setMenuRole(QAction::NoRole);
10251033
export_menu->addAction(export_image_act);
10261034
export_menu->addAction(export_pdf_act);
10271035
file_menu->insertMenu(insertion_act, export_menu);
@@ -1065,6 +1073,7 @@ void MapEditorController::createMenuAndToolbars()
10651073
view_menu->addAction(hide_all_templates_act);
10661074
view_menu->addSeparator();
10671075
QMenu* coordinates_menu = new QMenu(tr("Display coordinates as..."), view_menu);
1076+
coordinates_menu->menuAction()->setMenuRole(QAction::NoRole);
10681077
coordinates_menu->addAction(map_coordinates_act);
10691078
coordinates_menu->addAction(projected_coordinates_act);
10701079
coordinates_menu->addAction(geographic_coordinates_act);
@@ -3514,12 +3523,14 @@ void MapEditorController::updateMapPartsUI()
35143523
if (!mappart_merge_menu)
35153524
{
35163525
mappart_merge_menu = new QMenu();
3526+
mappart_merge_menu->menuAction()->setMenuRole(QAction::NoRole);
35173527
mappart_merge_menu->setTitle(tr("Merge this part with"));
35183528
}
35193529

35203530
if (!mappart_move_menu)
35213531
{
35223532
mappart_move_menu = new QMenu();
3533+
mappart_move_menu->menuAction()->setMenuRole(QAction::NoRole);
35233534
mappart_move_menu->setTitle(tr("Move selected objects to"));
35243535
}
35253536

@@ -4052,6 +4063,7 @@ MapEditorToolAction::MapEditorToolAction(const QIcon& icon, const QString& text,
40524063
: QAction(icon, text, parent)
40534064
{
40544065
setCheckable(true);
4066+
setMenuRole(QAction::NoRole);
40554067
connect(this, &QAction::triggered, this, &MapEditorToolAction::triggeredImpl);
40564068
}
40574069

0 commit comments

Comments
 (0)