ocornut
41f02825fc
Version 1.91.5 WIP
2 weeks ago
ocornut
83b64b8be2
Version 1.91.4
3 weeks ago
ocornut
0536ace2b6
Internals: (Breaking) renamed RenderNavHighlight() to RenderNavCursor(), ImGuiNavHighlightFlags to ImGuiNavRenderCursorFlags. ( #1074 , #2048 , #7237 , #8059 , #1712 , #7370 , #787 )
+ referenced in #8057 , #3882 , #3411 , #2155 , #3351 , #4722 , #1658 , #4050 .
3 weeks ago
ocornut
f3d242a90d
Tables: fixed initial auto-sizing issue with synched-instances. ( #8045 , #7218 )
4 weeks ago
ocornut
1dde20ff4a
Version 1.91.4 WIP
1 month ago
ocornut
cb16568fca
Version 1.91.3
1 month ago
ocornut
30c29d291f
Error Handling: enabled experimental recovery systems. ( #1651 , #5654 )
Setup a couple of features to configure them, including ways to display error tooltips instead of assserting.
1 month ago
ocornut
faca859043
Version 1.91.3 WIP
2 months ago
ocornut
a9f72ab681
Version 1.91.2
2 months ago
ocornut
e648dbb59d
Tables: fixed auto-width columns when using synced-instances of same table. ( #7218 )
Amend d3c3514a5
2 months ago
ocornut
71714eab53
Tables: fixed assertion related to inconsistent outer clipping when sizes are not rounded. ( #7957 )
2 months ago
ocornut
11fba027e5
Tables: using table->InnerClipRect more consistently. Fixes an assertion with tables with borders when clipped by parent. ( #6765 , #3752 , #7428 )
2 months ago
ocornut
dab63231d8
Misc: Made it accepted to call SetMouseCursor() with any out-of-bound value, as a way to allow hacking in custom cursors if desirable.
2 months ago
ocornut
193c1e2366
Version 1.91.2 WIP
2 months ago
ocornut
1dfbb100d6
Version 1.91.1
2 months ago
ocornut
f75cf62d2f
Tables: fixed resizing columns when using multiple synched instances that are layed out at different X positions. ( #7933 )
TableGetMaxColumnWidth() was using MinX from previous column. Storing info in column. Still incorrect interleaved data for multi-instances but it covers majority of use cases.
2 months ago
ocornut
8dd33839f0
Tables: fixed an issue detecting hovering column/row when using multiple synched instances layed out at different X positions. ( #7933 )
Was reading ClipRect from last frame.
2 months ago
ocornut
722a2a12fb
Tables: comments. ( #7937 )
2 months ago
ocornut
864a2bf6b8
Tables: another attempt at making contents not overlap the bottom and right border in a scrolling table. ( #6765 , #3752 , #7428 )
3 months ago
ocornut
a131c3e611
Tables: revert a34071876
extending outer bottom/right border by 1, this is not the right solution. ( #6765 , #3752 )
3 months ago
ocornut
0b9adc2c79
BeginChild: (BREAKING) renamed ImGuiChildFlags_Border to ImGuiChildFlags_Borders.
Amend 7713c2925
+ renamed similar argument in other functions.
3 months ago
ocornut
dcf54782d4
Version 1.91.WIP
3 months ago
ocornut
8199457a7d
Version 1.91.0
3 months ago
ocornut
249d5caedb
Tables: storing LastFrozenHeight for frozen requests that don't have actual freezing due to zero scrolling. ( #7821 , #5143 )
Amend 0b4a1a40
(ignore whitespace to view this patch easily)
3 months ago
ocornut
4247f190c2
Demo: Property Editor: rearrange code + replace use of bool to proper ImGuiChildFlags.
Amend 46691d1
4 months ago
ocornut
0de88a928d
Added ImGuiItemFlags_AutoClosePopups as a replacement for internal's ImGuiItemFlags_SelectableDontClosePopup. ( #1379 , #1468 , #2200 , #4936 , #5216 , #7302 , #7573 )
4 months ago
ocornut
0f63d3e916
Internals: added FontScale storage.
4 months ago
ocornut
84cc72f372
Version 1.91.0 WIP
4 months ago
ocornut
cb16be3a3f
Version 1.90.9
4 months ago
ocornut
7260bb51cf
Version 1.90.9 WIP
5 months ago
ocornut
6f7b5d0ee2
Version 1.90.8
5 months ago
ocornut
a31aa683ff
Tables: fixed an issue where ideal size reported to parent container wouldn't correctly take account of inner scrollbar. ( #7651 )
5 months ago
ocornut
68a05e3f04
Tables: fixed a bug where after disabling the ScrollY flag for a table, previous scrollbar width would be accounted for. ( #5920 )
Amend 317b33d6
5 months ago
ocornut
51823d117d
Misc: made ImGuiDir, ImGuiSortDirection, ImGuiMouseCursor stronger-typed enums + cater for possible warning in backends's switch()
Not making ImGuiMouseCursor one because of warnings for non-explicitly handled value (case default: is not enough).
5 months ago
ocornut
1f9fc382c3
Version 1.90.8 WIP
Tidying up todo.txt
5 months ago
ocornut
00ad3c65bc
Version 1.90.7
5 months ago
ocornut
a1566c5e1b
Tables: fixed 28a283b
breaking PageDown on tables with no interactive items.
6 months ago
ocornut
cd48059dc5
Tables: comments about skipping access to table data in coarse clipping path.
6 months ago
ocornut
28a283b460
Windows: BeginChild(), Tables:fixed visibility of fully clipped child windows and tables to Test Engine.
6 months ago
Eugene Sandulenko
aa5a6098ee
Fixed typos in comments ( #7599 )
6 months ago
Hubert Maier
07dbcf1f70
Fixed typos. ( #7593 )
6 months ago
ocornut
e4576914cb
Internals: amend f806c76
to better match docking + fixed unused static forward declaration warning.
6 months ago
ocornut
f806c76e97
Tables, Dpi: added dummy g.DpiScale storage (to be altered in docking), using to scale tables border hit thickness.
+ Added note about how equivalent resize padding for windows (sourced from WINDOWS_HOVER_PADDING) would need further rework.
6 months ago
prabu
510eb8f480
Tables: fixed cell background of fully clipped row overlapping with header. ( #7575 , #7041 )
6 months ago
ocornut
f48aae600a
Version 1.90.7 WIP
6 months ago
ocornut
6ccc561a2a
Version 1.90.6
6 months ago
thedmd
fc4d818e17
Tables: Angled headers: added TableAngledHeadersTextAlign, ImGuiStyleVar_TableAngledHeadersTextAlign. ( #6917 )
6 months ago
ocornut
4bb7567141
Tables: Angled headers: fixed multi-line label display when angle is flipped. ( #6917 )
6 months ago
ocornut
b30df8890d
Table: Angled Headers: internal refactor to facilitate changing angled header bg and text colors per column. ( #6917 )
6 months ago
ocornut
3caa79c8a5
Version 1.90.6 WIP
7 months ago