1
0
mirror of synced 2024-11-13 18:50:53 +01:00

ui: Fixed highlighting alpha value

This commit is contained in:
WerWolv 2022-07-31 16:09:57 +02:00
parent f23ee951d9
commit 4460d09140

View File

@ -722,7 +722,7 @@ namespace hex::plugin::builtin {
}
if (color.has_value())
color = *color | (this->m_selectionColor & 0xFF000000);
color = (*color & 0x00FFFFFF) | (this->m_selectionColor & 0xFF000000);
return color;
}();