mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-22 15:45:59 +01:00
master: fix invalid config usage
This commit is contained in:
parent
38576d651a
commit
c4f52d1979
1 changed files with 2 additions and 2 deletions
|
@ -43,9 +43,9 @@ SMasterWorkspaceData* CHyprMasterLayout::getMasterWorkspaceData(const int& ws) {
|
||||||
//create on the fly if it doesn't exist yet
|
//create on the fly if it doesn't exist yet
|
||||||
const auto PWORKSPACEDATA = &m_lMasterWorkspacesData.emplace_back();
|
const auto PWORKSPACEDATA = &m_lMasterWorkspacesData.emplace_back();
|
||||||
PWORKSPACEDATA->workspaceID = ws;
|
PWORKSPACEDATA->workspaceID = ws;
|
||||||
const auto orientation = (Hyprlang::STRING const*)g_pConfigManager->getConfigValuePtr("master:orientation");
|
static auto PORIENTATION = CConfigValue<std::string>("master:orientation");
|
||||||
const auto layoutoptsForWs = g_pConfigManager->getWorkspaceRuleFor(g_pCompositor->getWorkspaceByID(ws)).layoutopts;
|
const auto layoutoptsForWs = g_pConfigManager->getWorkspaceRuleFor(g_pCompositor->getWorkspaceByID(ws)).layoutopts;
|
||||||
std::string orientationForWs = *orientation;
|
std::string orientationForWs = *PORIENTATION;
|
||||||
|
|
||||||
if (layoutoptsForWs.contains("orientation"))
|
if (layoutoptsForWs.contains("orientation"))
|
||||||
orientationForWs = layoutoptsForWs.at("orientation");
|
orientationForWs = layoutoptsForWs.at("orientation");
|
||||||
|
|
Loading…
Reference in a new issue