mirror of
https://github.com/ItsDrike/hyprland-dwindle-autogroup.git
synced 2024-11-10 02:59:41 +00:00
Remove prefix newlines from demangled func name
The demangled function names from HyprlandAPI::findFunctionsByName were
originally always returning a string prefixed with a newline character.
This was fixed in Hyprland since
1afb00a01b
so the newline char can now be removed.
This commit is contained in:
parent
54cf7c6989
commit
66f03d3a08
|
@ -33,9 +33,9 @@ APICALL EXPORT PLUGIN_DESCRIPTION_INFO PLUGIN_INIT(HANDLE handle)
|
||||||
Debug::log(LOG, "[dwindle-autogroup] Loading Hyprland functions");
|
Debug::log(LOG, "[dwindle-autogroup] Loading Hyprland functions");
|
||||||
|
|
||||||
// Find pointers to functions by name (from the Hyprland binary)
|
// Find pointers to functions by name (from the Hyprland binary)
|
||||||
g_pNodeFromWindow = (nodeFromWindowFuncT)findHyprlandFunction("getNodeFromWindow", "\nCHyprDwindleLayout::getNodeFromWindow(CWindow*)");
|
g_pNodeFromWindow = (nodeFromWindowFuncT)findHyprlandFunction("getNodeFromWindow", "CHyprDwindleLayout::getNodeFromWindow(CWindow*)");
|
||||||
auto pCreateGroup = findHyprlandFunction("createGroup", "\nCWindow::createGroup()");
|
auto pCreateGroup = findHyprlandFunction("createGroup", "CWindow::createGroup()");
|
||||||
auto pDestroyGroup = findHyprlandFunction("destroyGroup", "\nCWindow::destroyGroup()");
|
auto pDestroyGroup = findHyprlandFunction("destroyGroup", "CWindow::destroyGroup()");
|
||||||
|
|
||||||
// Return immediately if one of the functions wasn't found
|
// Return immediately if one of the functions wasn't found
|
||||||
if (!g_pNodeFromWindow || !pCreateGroup || !pDestroyGroup) {
|
if (!g_pNodeFromWindow || !pCreateGroup || !pDestroyGroup) {
|
||||||
|
|
Loading…
Reference in a new issue