mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-09 15:26:00 +01:00
fix un-normalized missed color
This commit is contained in:
parent
c56b2b99f5
commit
c02ac5e08a
1 changed files with 1 additions and 1 deletions
|
@ -1671,7 +1671,7 @@ void CConfigManager::addParseError(const std::string& err) {
|
|||
if (parseError == "")
|
||||
parseError = err;
|
||||
|
||||
g_pHyprError->queueCreate(parseError + "\nHyprland may not work correctly.", CColor(255, 50, 50, 255));
|
||||
g_pHyprError->queueCreate(parseError + "\nHyprland may not work correctly.", CColor(1.0, 50.0 / 255.0, 50.0 / 255.0, 1.0));
|
||||
}
|
||||
|
||||
CMonitor* CConfigManager::getBoundMonitorForWS(const std::string& wsname) {
|
||||
|
|
Loading…
Reference in a new issue