mirror of
https://github.com/vale981/Hyprland
synced 2025-03-12 13:46:42 -04: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;
|
||
|
}
|