Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/modules/notificationitem/dbusmenu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -189,10 +189,10 @@ void DBusMenu::fillLayoutItem(
if (hasAction) {
appendSubItem(subLayoutItems, BII_Separator2, depth, propertyNames);
}
appendSubItem(subLayoutItems, BII_Configure, depth, propertyNames);
if (parent_->instance()->canRestart()) {
appendSubItem(subLayoutItems, BII_Restart, depth, propertyNames);
}
appendSubItem(subLayoutItems, BII_Configure, depth, propertyNames);
if (parent_->instance()->canRestart() &&
getDesktopType() != DesktopType::DEEPIN) {
appendSubItem(subLayoutItems, BII_Exit, depth, propertyNames);
Expand Down Expand Up @@ -250,7 +250,7 @@ void DBusMenu::fillLayoutProperties(
case BII_Configure:
/* this icon sucks on KDE, why configure doesn't have "configure" */
appendProperty(properties, propertyNames, "label",
dbus::Variant(_("Configure")));
dbus::Variant(_("Input Method Settings")));
if (isKDE()) {
properties.emplace_back("icon-name",
dbus::Variant("configure"));
Expand Down
2 changes: 1 addition & 1 deletion src/ui/classic/xcbtraywindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ XCBTrayWindow::XCBTrayWindow(XCBUI *ui) : XCBWindow(ui, 48, 48) {
}
groupAction_.setShortText(_("Group"));
groupAction_.setMenu(&groupMenu_);
configureAction_.setShortText(_("Configure"));
configureAction_.setShortText(_("Input Method Settings"));
restartAction_.setShortText(_("Restart"));
exitAction_.setShortText(_("Exit"));
menu_.addAction(&groupAction_);
Expand Down
Loading