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
2 changes: 1 addition & 1 deletion src/session-widgets/lockcontent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,7 @@ void LockContent::showModule(const QString &name, const bool callShowForce)
qCWarning(DDE_SHELL) << "TrayButton or plugin`s content is null";
return;
}
showTrayPopup(m_currentTray, plugin->content());
showTrayPopup(m_currentTray, plugin->content(), callShowForce);
break;
}
default:
Expand Down
4 changes: 2 additions & 2 deletions src/session-widgets/lockcontent.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,15 @@ public slots:

protected:
void toggleVirtualKB();
void showModule(const QString &name, const bool callShowForce = false);
void showModule(const QString &name, const bool callShowForce);
void updateVirtualKBPosition();
void onUserListChanged(QList<std::shared_ptr<User>> list);
void tryGrabKeyboard(bool exitIfFalied = true);
void currentWorkspaceChanged();
void updateWallpaper(const QString &path);
void refreshBackground(SessionBaseModel::ModeStatus status);
void refreshLayout(SessionBaseModel::ModeStatus status);
void showTrayPopup(QWidget *trayWidget, QWidget *contentWidget, const bool callShowForce = false);
void showTrayPopup(QWidget *trayWidget, QWidget *contentWidget, const bool callShowForce);

void initUI();
void initConnections();
Expand Down
Loading