Emit signal in Application once Screens are created

master
Martin Gräßlin 10 years ago
parent c23e106c8b
commit 90b1980ce0

@ -389,6 +389,7 @@ void Application::createScreens()
return; return;
} }
Screens::create(this); Screens::create(this);
emit screensCreated();
} }
void Application::createAtoms() void Application::createAtoms()

@ -151,6 +151,7 @@ public:
Q_SIGNALS: Q_SIGNALS:
void x11ConnectionChanged(); void x11ConnectionChanged();
void workspaceCreated(); void workspaceCreated();
void screensCreated();
protected: protected:
Application(OperationMode mode, int &argc, char **argv); Application(OperationMode mode, int &argc, char **argv);

Loading…
Cancel
Save