mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-08-04 06:01:56 -07:00
internal: refactor to use empty() (#10599)
This commit is contained in:
@@ -23,7 +23,7 @@ static inline auto iconBackendFromLayout(PangoLayout* layout) {
|
||||
|
||||
CHyprNotificationOverlay::CHyprNotificationOverlay() {
|
||||
static auto P = g_pHookSystem->hookDynamic("focusedMon", [&](void* self, SCallbackInfo& info, std::any param) {
|
||||
if (m_notifications.size() == 0)
|
||||
if (m_notifications.empty())
|
||||
return;
|
||||
|
||||
g_pHyprRenderer->damageBox(m_lastDamage);
|
||||
@@ -210,7 +210,7 @@ void CHyprNotificationOverlay::draw(PHLMONITOR pMonitor) {
|
||||
}
|
||||
|
||||
// Draw the notifications
|
||||
if (m_notifications.size() == 0)
|
||||
if (m_notifications.empty())
|
||||
return;
|
||||
|
||||
// Render to the monitor
|
||||
|
Reference in New Issue
Block a user