mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 15:25:59 +01:00
11 lines
229 B
C++
11 lines
229 B
C++
|
#include "LayoutManager.hpp"
|
||
|
|
||
|
IHyprLayout* CLayoutManager::getCurrentLayout() {
|
||
|
switch (m_iCurrentLayoutID) {
|
||
|
case DWINDLE:
|
||
|
return &m_cDwindleLayout;
|
||
|
}
|
||
|
|
||
|
// fallback
|
||
|
return &m_cDwindleLayout;
|
||
|
}
|