aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Compositor.cpp
diff options
context:
space:
mode:
authorvaxerski <[email protected]>2022-04-08 21:40:41 +0200
committervaxerski <[email protected]>2022-04-08 21:40:41 +0200
commit7347a72ba674b099a073c17a74877b6e93a8e1e3 (patch)
treeeb43369765d28d5605ab4b790a1bb5455028e3d9 /src/Compositor.cpp
parent037bad4986f3f5077bac91cdcdf20bd94d4fa38e (diff)
downloadHyprland-7347a72ba674b099a073c17a74877b6e93a8e1e3.tar.gz
Hyprland-7347a72ba674b099a073c17a74877b6e93a8e1e3.zip
Added HyprError for showing config errors
Diffstat (limited to 'src/Compositor.cpp')
-rw-r--r--src/Compositor.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Compositor.cpp b/src/Compositor.cpp
index 601cf114..bd843ef5 100644
--- a/src/Compositor.cpp
+++ b/src/Compositor.cpp
@@ -121,6 +121,9 @@ void CCompositor::startCompositor() {
// Init all the managers BEFORE we start with the wayland server so that ALL of the stuff is initialized
// properly and we dont get any bad mem reads.
//
+ Debug::log(LOG, "Creating the CHyprError!");
+ g_pHyprError = std::make_unique<CHyprError>();
+
Debug::log(LOG, "Creating the KeybindManager!");
g_pKeybindManager = std::make_unique<CKeybindManager>();