1
0
mirror of synced 2025-01-19 01:24:15 +01:00

patterns: Updated pattern language

Fixes #1030
This commit is contained in:
WerWolv 2023-04-12 16:03:58 +02:00
parent aa7c5422c0
commit 7e144b136b
2 changed files with 7 additions and 2 deletions

@ -1 +1 @@
Subproject commit 32d83b2eca3b6a82ea61b11ef1047a0d4b9b1f08
Subproject commit 5957400abf116eaa9e849a7b72a158d2ea6e1226

View File

@ -306,7 +306,12 @@ namespace hex::plugin::builtin::ui {
makeSelectable(pattern);
drawCommentTooltip(pattern);
ImGui::TableNextColumn();
drawColorColumn(pattern);
if (pattern.isSealed())
drawColorColumn(pattern);
else
ImGui::TableNextColumn();
drawOffsetColumn(pattern);
drawSizeColumn(pattern);
drawTypenameColumn(pattern, "bitfield");