ocornut
|
5e7174dec6
|
TreeNode: removed TreeLinesSize > 0.0f optimization check. (#2920)
This is desirable but we'd need to avoid exposing 0.0f in style editor + assert on it.
|
2025-04-09 17:40:15 +02:00 |
|
ocornut
|
789de09dda
|
TreeNode: extracted TreeNodeDrawLineToChildNode() for usage by custom widgets (#2920)
|
2025-04-09 12:04:09 +02:00 |
|
ocornut
|
39f34e1e58
|
TreeNode: Don't latch GetColorU32(ImGuiCol_TreeLines). (#2920)
Trade off doesn't seem worth it for large trees. User who really needs to alter colors can do it by adjusting Push/Pop locations.
|
2025-04-08 19:58:59 +02:00 |
|
ocornut
|
e5b218e6d1
|
TreeNode: added ImGuiTreeNodeFlags_DrawTreeXXX flags. (#2920)
# Conflicts:
# docs/CHANGELOG.txt
|
2025-04-08 19:58:59 +02:00 |
|
ocornut
|
faa03031b4
|
Windows: loosened code to handle ImGuiButtonFlags_FlattenChildren so that master matches docking. (#8554)
This essentially merges 059560d2 back into master.
|
2025-04-07 18:21:34 +02:00 |
|
ocornut
|
9701810bc3
|
TreeNode: adding ImGuiTreeNodeFlags_NoNavFocus in imgui_internal.h (#8551)
|
2025-04-07 11:41:21 +02:00 |
|
tanksdude
|
f5003aff69
|
Docs: Fix some typos (#8505)
|
2025-03-21 16:23:09 +01:00 |
|
ocornut
|
d467950a5e
|
Style, InputText: added ImGuiCol_InputTextCursor to configure color of the InputText cursor/caret. (#7031)
|
2025-03-19 17:50:40 +01:00 |
|
ocornut
|
0ecb2bbe74
|
Version 1.92.0 WIP
|
2025-03-19 17:45:20 +01:00 |
|
ocornut
|
ee48ffe021
|
Added comments about line/rect thickness needing scaling. (#7031)
|
2025-03-19 17:42:19 +01:00 |
|
ocornut
|
93b446a962
|
Backtrack of version tagging 1.92.0 > 1.91.9b for publishing a hotfix (#8496)
|
2025-03-17 19:39:52 +01:00 |
|
ocornut
|
bfaef8ca17
|
Version 1.92.0 WIP
|
2025-03-17 19:09:07 +01:00 |
|
Wizard
|
d6493aab02
|
Fix typo in comment (#8494)
|
2025-03-16 23:56:59 +01:00 |
|
ocornut
|
97428e8ac9
|
Version 1.91.9
|
2025-03-14 17:13:11 +01:00 |
|
ocornut
|
ea2a12112d
|
Misc: Various zealous warning fixes for newer version of Clang.
|
2025-03-14 17:13:11 +01:00 |
|
ocornut
|
b758b8223f
|
InputText: Pasting a multi-line buffer into a single-line edit replaces carriage return by spaces. (#8459)
|
2025-03-13 19:30:59 +01:00 |
|
ocornut
|
39585aa90d
|
Amend Changelog to talk about OEM keys. (#7136, #7201, #7206, #7306, #7670, #7672, #8468)
+ more consistently use Ctrl+XXX instead of Ctrl-XXX.
|
2025-03-10 18:16:08 +01:00 |
|
fdsa
|
3c3d943fb1
|
Docs: Fix some typos (#8473)
|
2025-03-09 16:42:16 +01:00 |
|
ocornut
|
1ec99f4fd3
|
Internals: added ImStrlen/ImMemchr #define to facilitate experimenting with variations. (#8421)
|
2025-03-07 11:09:07 +01:00 |
|
ocornut
|
9f49292b35
|
Internals: Menus: reworked mangling of menu windows to use "###Menu_00" etc. instead of "##Menu_00".
|
2025-03-05 15:47:57 +01:00 |
|
ocornut
|
c5ade6591e
|
TextLink(), TextLinkOpenURL(): fixed honoring text baseline alignment. (#8451, #7660)
|
2025-03-02 13:40:51 +01:00 |
|
ocornut
|
494ea57b65
|
Image: removed 'tint_col', 'border_col' parameters from Image(). Added ImageWithBg(). Added style.ImageBorderSize, ImGuiStyleVar_ImageBorderSize. (#8131, #8238)
Displaying a black background behind Font Atlas texture.
|
2025-02-27 21:48:24 +01:00 |
|
ocornut
|
ef969a53f5
|
Tabs: fixed Unsaved Marker not being visible when Close Button is. (#8430, #8387)
|
2025-02-24 11:44:48 +01:00 |
|
Nico van Bentum
|
c4a32a129d
|
Tabs: fixed middle-button to close not checking hovering, only close button visibility. (#8399, #8387)
Main bug has been here since 54a60aaa4 , but it's only ef7ffaff7 which made it very visible.
|
2025-02-17 11:44:35 +01:00 |
|
ocornut
|
78ec1272e9
|
ImDrawList: added InitialFringeScale in ImDrawListSharedData. Default to 1.0f.
This is to allow some DPI mods with less changes. Only the initial value in SetupDrawListSharedData() will need change.
|
2025-02-17 11:28:35 +01:00 |
|
ocornut
|
2860d7ba05
|
Selectable: Fixed horizontal label alignment with SelectableTextAlign.x > 0 and specifying a selectable size. (#8338)
Regression from ed7551c1d
|
2025-02-14 19:44:35 +01:00 |
|
ocornut
|
ef7ffaff74
|
Styles, Tabs: (Breaking) Renamed TabMinWidthForCloseButton to TabCloseButtonMinWidthUnselected. Added TabCloseButtonMinWidthSelected. (#8387)
|
2025-02-12 15:46:17 +01:00 |
|
fdsa
|
6916f935eb
|
InputText: Allow CTRL+Shift+Z to redo even outside of OSX. (#8389)
|
2025-02-12 14:25:38 +01:00 |
|
ocornut
|
e5668b8c73
|
Internals: rename ImGuiNextWindowData::Flags to HasFlags for consistency and to reduce mistakes.
|
2025-02-07 22:48:31 +01:00 |
|
ocornut
|
914fbcf2e5
|
Fonts: removed unnecessary const qualifier from ImFont::FindGlyph()
Amend 0bde57c
|
2025-02-07 16:26:20 +01:00 |
|
ocornut
|
0625b37760
|
Scrollbar: Rework logic that fades-out scrollbar when it becomes too small.
Amend 0236bc246f
|
2025-02-06 18:41:47 +01:00 |
|
ocornut
|
5dd84082ab
|
InputTextWithHint(): Fixed buffer overflow when user callback modifies the buffer contents in a way that alters hint visibility. (#8368)
|
2025-02-03 15:11:22 +01:00 |
|
ocornut
|
f820bf7cd4
|
Version 1.91.9 WIP
|
2025-02-03 12:33:40 +01:00 |
|
ocornut
|
dbb5eeaadf
|
Version 1.91.8
|
2025-01-31 16:08:17 +01:00 |
|
ocornut
|
ae6cfd32a0
|
Tables, Menus: Fixed tables or child windows submitted inside BeginMainMenuBar() being unable to save their settings. (#8356)
Amend error handling (fa178f4 ) to avoid us setting ImGuiWindowFlags_NoSavedSettings on the wrong window.
|
2025-01-30 14:34:51 +01:00 |
|
ocornut
|
fa178f4235
|
Error Handling: Recovery from missing EndMenuBar() call. (#1651)
|
2025-01-30 14:30:14 +01:00 |
|
ocornut
|
dabc990189
|
Rename internal id for standardizing naming convention. "##menubar" -> "##MenuBar", "###NavWindowingList" -> "###NavWindowingOverlay"
"###NavUpdateWindowing" one should have zero side effect on anyone.
|
2025-01-29 19:59:41 +01:00 |
|
ocornut
|
a71191515a
|
EndMainMenuBar doesn't attempt to restore focus when there's an active id. (#8355)
I don't have a specific issue in mind but it seems sane to add that test.
|
2025-01-29 19:07:28 +01:00 |
|
ocornut
|
ea0da0bf47
|
Extracted PushPasswordFont() out of InputText code.
|
2025-01-27 18:04:44 +01:00 |
|
ocornut
|
9c4948a4d1
|
TabBar: Internals: added TabItemSpacing(). (#8349, #3291)
|
2025-01-27 15:41:24 +01:00 |
|
ocornut
|
ed7551c1d4
|
Selectable: Fixed horizontal label alignment when combined with using ImGuiSelectableFlags_SpanAllColumns. (#8338)
|
2025-01-24 14:59:37 +01:00 |
|
ocornut
|
bbf957875b
|
Amend 9bc5b04 to avoid using GImGui mid-function.
|
2025-01-24 14:43:16 +01:00 |
|
ocornut
|
9bc5b0406d
|
Windows, Style: Fixed small rendering issues with menu bar, resize grip and scrollbar when using thick border sizes. (#8267, #7887)
Amend e.g. 742b5f4c .
|
2025-01-24 14:39:07 +01:00 |
|
ocornut
|
6906ac979e
|
ColorEdit, ColorPicker: (Breaking) redesigned how alpha is displayed in the preview square. (#8335, #1578, #346)
Added ImGuiColorEditFlags_AlphaOpaque, ImGuiColorEditFlags_AlphaNoBg.
Removed ImGuiColorEditFlags_AlphaPreview.
|
2025-01-22 12:12:07 +01:00 |
|
ocornut
|
7ae7c90790
|
Tabs, Style: reworked selected overline rendering to better accommodate for rounded tabs. (#8334)
|
2025-01-21 13:55:44 +01:00 |
|
ocornut
|
c59a2267d0
|
Version 1.91.8 WIP
|
2025-01-15 11:58:47 +01:00 |
|
ocornut
|
5c1d2d1e4c
|
Version 1.91.7
|
2025-01-14 13:29:25 +01:00 |
|
ocornut
|
9f8481a842
|
(Breaking) TreeNode: renamed ImGuiTreeNodeFlags_SpanTextWidth to ImGuiTreeNodeFlags_SpanLabelWidth. (#6937)
|
2025-01-14 13:14:50 +01:00 |
|
ocornut
|
290e402a02
|
TreeNode, Tables: added ImGuiTreeNodeFlags_LabelSpanAllColumns. (#8318, #3565)
|
2025-01-13 18:55:09 +01:00 |
|
ocornut
|
00f12b9a09
|
InputText: Fixed not calling CallbackEdit on revert/clear with Escape key. (#8273) + rework comments.
Seems like there is no reason to not run that path. Amend ancient 9501cd99 , f3ab5e625
|
2025-01-13 15:25:20 +01:00 |
|