mirror of
https://github.com/hyprwm/xdg-desktop-portal-hyprland.git
synced 2025-02-03 19:59:48 +01:00
globalshortcuts: Fix inverted arguments (#310)
This commit is contained in:
parent
d7f18dda5e
commit
7613351375
1 changed files with 2 additions and 2 deletions
|
@ -130,7 +130,7 @@ dbUasv CGlobalShortcutsPortal::onBindShortcuts(sdbus::ObjectPath requestHandle,
|
|||
return {0, data};
|
||||
}
|
||||
|
||||
dbUasv CGlobalShortcutsPortal::onListShortcuts(sdbus::ObjectPath sessionHandle, sdbus::ObjectPath requestHandle) {
|
||||
dbUasv CGlobalShortcutsPortal::onListShortcuts(sdbus::ObjectPath requestHandle, sdbus::ObjectPath sessionHandle) {
|
||||
Debug::log(LOG, "[globalshortcuts] List keys:");
|
||||
Debug::log(LOG, "[globalshortcuts] | {}", sessionHandle.c_str());
|
||||
|
||||
|
@ -192,4 +192,4 @@ void CGlobalShortcutsPortal::onDeactivated(SKeybind* pKeybind, uint64_t time) {
|
|||
Debug::log(TRACE, "[gs] Session {} called deactivated on {}", PSESSION->sessionHandle.c_str(), pKeybind->id);
|
||||
|
||||
m_pObject->emitSignal("Deactivated").onInterface(INTERFACE_NAME).withArguments(PSESSION->sessionHandle, pKeybind->id, time, std::unordered_map<std::string, sdbus::Variant>{});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue