ui: Fixed highlighting alpha value
This commit is contained in:
parent
f23ee951d9
commit
4460d09140
@ -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;
|
||||
}();
|
||||
|
Loading…
Reference in New Issue
Block a user