mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-15 06:05:59 +01:00
notif-overlay: add a bit of padding for icons
This commit is contained in:
parent
05a5e0b4f1
commit
5c3bd8e93d
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ CHyprNotificationOverlay::~CHyprNotificationOverlay() {
|
|||
void CHyprNotificationOverlay::addNotification(const std::string& text, const CColor& color, const float timeMs, const eIcons icon, const float fontSize) {
|
||||
const auto PNOTIF = m_dNotifications.emplace_back(std::make_unique<SNotification>()).get();
|
||||
|
||||
PNOTIF->text = text;
|
||||
PNOTIF->text = icon != eIcons::ICON_NONE ? " " + text /* tiny bit of padding otherwise icon touches text */ : text;
|
||||
PNOTIF->color = color == CColor(0) ? ICONS_COLORS[icon] : color;
|
||||
PNOTIF->started.reset();
|
||||
PNOTIF->timeMs = timeMs;
|
||||
|
|
Loading…
Reference in a new issue