mirror of
https://github.com/ocornut/imgui.git
synced 2024-11-12 02:00:58 +01:00
This commit is contained in:
parent
23c1ff4907
commit
be9f1e8f00
@ -54,6 +54,7 @@ Breaking Changes:
|
|||||||
The value is unused in master branch but will be used by the multi-viewport feature. (#2851) [@obfuscate]
|
The value is unused in master branch but will be used by the multi-viewport feature. (#2851) [@obfuscate]
|
||||||
|
|
||||||
Other Changes:
|
Other Changes:
|
||||||
|
- ColorPicker: Fixed SV triangle gradient to block (broken in 1.73). (#2864, #2711). [@lewa-j]
|
||||||
- InputText, Nav: Fixed Home/End key broken when activating Keyboard Navigation. (#787)
|
- InputText, Nav: Fixed Home/End key broken when activating Keyboard Navigation. (#787)
|
||||||
- InputText: Filter out ASCII 127 (DEL) emitted by low-level OSX layer, as we are using the Key value. (#2578)
|
- InputText: Filter out ASCII 127 (DEL) emitted by low-level OSX layer, as we are using the Key value. (#2578)
|
||||||
- TreeNode: Fixed combination of ImGuiTreeNodeFlags_SpanFullWidth and ImGuiTreeNodeFlags_OpenOnArrow
|
- TreeNode: Fixed combination of ImGuiTreeNodeFlags_SpanFullWidth and ImGuiTreeNodeFlags_OpenOnArrow
|
||||||
|
@ -4784,7 +4784,7 @@ bool ImGui::ColorPicker4(const char* label, float col[4], ImGuiColorEditFlags fl
|
|||||||
draw_list->PrimVtx(trb, uv_white, hue_color32);
|
draw_list->PrimVtx(trb, uv_white, hue_color32);
|
||||||
draw_list->PrimVtx(trc, uv_white, col_white);
|
draw_list->PrimVtx(trc, uv_white, col_white);
|
||||||
draw_list->PrimVtx(tra, uv_white, 0);
|
draw_list->PrimVtx(tra, uv_white, 0);
|
||||||
draw_list->PrimVtx(trb, uv_white, col_white);
|
draw_list->PrimVtx(trb, uv_white, col_black);
|
||||||
draw_list->PrimVtx(trc, uv_white, 0);
|
draw_list->PrimVtx(trc, uv_white, 0);
|
||||||
draw_list->AddTriangle(tra, trb, trc, col_midgrey, 1.5f);
|
draw_list->AddTriangle(tra, trb, trc, col_midgrey, 1.5f);
|
||||||
sv_cursor_pos = ImLerp(ImLerp(trc, tra, ImSaturate(S)), trb, ImSaturate(1 - V));
|
sv_cursor_pos = ImLerp(ImLerp(trc, tra, ImSaturate(S)), trb, ImSaturate(1 - V));
|
||||||
|
Loading…
Reference in New Issue
Block a user