mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-28 07:47:03 -05:00
ui: Fixed highlighting alpha value
This commit is contained in:
@@ -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;
|
||||
}();
|
||||
|
||||
Reference in New Issue
Block a user