mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-23 06:05:59 +01:00
fix wlr workspace names before init
This commit is contained in:
parent
fa1273f258
commit
3f169a937a
1 changed files with 5 additions and 0 deletions
|
@ -1157,6 +1157,11 @@ void CConfigManager::dispatchExecOnce() {
|
|||
// set input, fixes some certain issues
|
||||
g_pInputManager->setKeyboardLayout();
|
||||
g_pInputManager->setMouseConfigs();
|
||||
|
||||
// set ws names again
|
||||
for (auto& ws : g_pCompositor->m_vWorkspaces) {
|
||||
wlr_ext_workspace_handle_v1_set_name(ws->m_pWlrHandle, ws->m_szName.c_str());
|
||||
}
|
||||
}
|
||||
|
||||
void CConfigManager::performMonitorReload() {
|
||||
|
|
Loading…
Reference in a new issue