Fix layers property editor last bit value in tooltip

This commit is contained in:
kleonc
2025-11-12 14:56:33 +01:00
parent e47fb8b898
commit c31b92ba19
2 changed files with 20 additions and 29 deletions

View File

@ -304,7 +304,8 @@ private:
bool expand_hovered = false;
bool expanded = false;
int expansion_rows = 0;
uint32_t hovered_index = INT32_MAX; // Nothing is hovered.
const uint32_t HOVERED_INDEX_NONE = UINT32_MAX;
uint32_t hovered_index = HOVERED_INDEX_NONE;
bool read_only = false;
int renamed_layer_index = -1;
PopupMenu *layer_rename = nullptr;