Emit signal in Application once Screens are created
This commit is contained in:
parent
c23e106c8b
commit
90b1980ce0
2 changed files with 2 additions and 0 deletions
1
main.cpp
1
main.cpp
|
@ -389,6 +389,7 @@ void Application::createScreens()
|
|||
return;
|
||||
}
|
||||
Screens::create(this);
|
||||
emit screensCreated();
|
||||
}
|
||||
|
||||
void Application::createAtoms()
|
||||
|
|
1
main.h
1
main.h
|
@ -151,6 +151,7 @@ public:
|
|||
Q_SIGNALS:
|
||||
void x11ConnectionChanged();
|
||||
void workspaceCreated();
|
||||
void screensCreated();
|
||||
|
||||
protected:
|
||||
Application(OperationMode mode, int &argc, char **argv);
|
||||
|
|
Loading…
Reference in a new issue