Skip to content

Commit

Permalink
unncessary bracing
Browse files Browse the repository at this point in the history
  • Loading branch information
Leeman committed Sep 11, 2023
1 parent eda5e9c commit 8d63a53
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/managers/KeybindManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1967,9 +1967,8 @@ void CKeybindManager::mouse(std::string args) {
}

void CKeybindManager::bringActiveToTop(std::string args) {
if (g_pCompositor->m_pLastWindow && g_pCompositor->m_pLastWindow->m_bIsFloating) {
if (g_pCompositor->m_pLastWindow && g_pCompositor->m_pLastWindow->m_bIsFloating)
g_pCompositor->moveWindowToTop(g_pCompositor->m_pLastWindow);
}
}

void CKeybindManager::alterZOrder(std::string args) {
Expand Down

0 comments on commit 8d63a53

Please sign in to comment.