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