mirror of
https://github.com/hyprwm/Hyprland
synced 2026-05-06 14:38:01 +02:00
config/lua: fix window object to selector logic
This commit is contained in:
parent
a5baf45d69
commit
3ed490ac01
1 changed files with 1 additions and 1 deletions
|
|
@ -208,7 +208,7 @@ std::optional<std::string> Internal::windowSelectorFromLuaSelectorOrObject(lua_S
|
|||
return std::nullopt;
|
||||
}
|
||||
|
||||
return std::format("0x{:x}", reinterpret_cast<uintptr_t>(w.get()));
|
||||
return std::format("address:0x{:x}", reinterpret_cast<uintptr_t>(w.get()));
|
||||
}
|
||||
|
||||
if (lua_isstring(L, idx) || lua_isnumber(L, idx))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue