Skip to content

Commit 11b3a7c

Browse files
committed
Merge branch 'master' into docking
2 parents c2dcc80 + dbb5eea commit 11b3a7c

File tree

10 files changed

+47
-23
lines changed

10 files changed

+47
-23
lines changed

docs/CHANGELOG.txt

+9-5
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,15 @@ HOW TO UPDATE?
3636
- Please report any issue!
3737

3838
-----------------------------------------------------------------------
39-
VERSION 1.91.8 WIP (In Progress)
39+
VERSION 1.91.8 (Released 2025-01-31)
4040
-----------------------------------------------------------------------
4141

42+
Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.91.8
43+
4244
Breaking changes:
4345

44-
- ColorEdit, ColorPicker: redesigned how alpha is displayed in the preview square. (#8335, #1578, #346)
46+
- ColorEdit, ColorPicker: redesigned how alpha is displayed in the preview
47+
square. (#8335, #1578, #346)
4548
- Removed ImGuiColorEditFlags_AlphaPreview (made value 0): it is now the default behavior.
4649
- Prior to 1.91.8: alpha was made opaque in the preview by default _unless_ using ImGuiColorEditFlags_AlphaPreview.
4750
- We now display the preview as transparent by default. You can use ImGuiColorEditFlags_AlphaOpaque to use old behavior.
@@ -63,22 +66,24 @@ Other changes:
6366
by introducing a delay. This is a very rarely used UI idiom, but some apps
6467
use this: e.g. MS Explorer single-click on an icon triggers a rename.
6568
Generally use with 'delay >= io.MouseDoubleClickTime' + combine with a
66-
'io.MouseClickedLastCount == 1' check.
69+
'GetMouseClickedCount() == 1' check.
6770
- Windows: legacy SetWindowFontScale() is properly inherited by nested child
6871
windows. Note that an upcoming major release should make this obsolete,
6972
but in the meanwhile it works better now. (#2701, #8138, #1018)
7073
- Windows, Style: Fixed small rendering issues with menu bar, resize grip and
7174
scrollbar when using thick border sizes. (#8267, #7887)
7275
- Windows: Fixed IsItemXXXX() functions not working on append-version of EndChild(). (#8350)
7376
Also made some of the fields accessible after BeginChild() to match Begin() logic.
77+
- Error Handling: Recovery from missing EndMenuBar() call. (#1651)
7478
- Tables, Menus: Fixed using BeginTable() in menu layer (any menu bar). (#8355)
7579
It previously overrode the current layer back to main layer, which caused an issue
7680
with MainMenuBar attempted to release focus when leaving the menu layer.
81+
- Tables, Menus: Fixed tables or child windows submitted inside BeginMainMenuBar()
82+
being unable to save their settings, as the main menu bar uses _NoSavedSettings. (#8356)
7783
- ColorEdit, ColorPicker: Fixed alpha preview broken in 1.91.7. (#8336, #8241). [@PathogenDavid]
7884
- Tabs, Style: reworked selected overline rendering to better accommodate
7985
for rounded tabs. Reduced default thickness (style.TabBarOverlineSize),
8086
increased default rounding (style.TabRounding). (#8334) [@Kian738, @ocornut]
81-
styles as the current look is not right (but ImGuiCol_TabSelectedOverline stays the same).
8287
- Debug Tools: Tweaked font preview.
8388
- ImDrawList: texture baked storage for thick line reduced from ~64x64 to ~32x32. (#3245)
8489
- Fonts: IndexLookup[] table hold 16-bit values even in ImWchar32 mode,
@@ -87,7 +92,6 @@ Other changes:
8792
- Fonts: OversampleH/OversampleV defaults to 0 for automatic selection.
8893
- OversampleH == 0 --> use 1 or 2 depending on font size and use of PixelSnapH.
8994
- OversampleV == 0 --> always use 1.
90-
This also
9195
- ImFontAtlas: made calling ClearFonts() call ClearInputData(), as calling
9296
one without the other is never correct. (#8174, #6556, #6336, #4723)
9397
- Examples: DirectX12: Reduced number of frame in flight from 3 to 2 in

examples/example_sdl3_opengl3/main.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
#include <SDL3/SDL_opengl.h>
1919
#endif
2020

21-
// This example doesn't compile with Emscripten yet! Awaiting SDL3 support.
2221
#ifdef __EMSCRIPTEN__
2322
#include "../libs/emscripten/emscripten_mainloop_stub.h"
2423
#endif

examples/example_sdl3_sdlrenderer3/main.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@
2121
#include <SDL3/SDL_opengl.h>
2222
#endif
2323

24+
#ifdef __EMSCRIPTEN__
25+
#include "../libs/emscripten/emscripten_mainloop_stub.h"
26+
#endif
27+
2428
// Main code
2529
int main(int, char**)
2630
{

imgui.cpp

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.91.8 WIP
1+
// dear imgui, v1.91.8
22
// (main code and documentation)
33

44
// Help:
@@ -10973,6 +10973,11 @@ void ImGui::ErrorRecoveryTryToRecoverWindowState(const ImGuiErrorRecoveryStat
1097310973
IM_ASSERT_USER_ERROR(0, "Missing EndMultiSelect()");
1097410974
EndMultiSelect();
1097510975
}
10976+
if (window->DC.MenuBarAppending) //-V1044
10977+
{
10978+
IM_ASSERT_USER_ERROR(0, "Missing EndMenuBar()");
10979+
EndMenuBar();
10980+
}
1097610981
while (window->DC.TreeDepth > state_in->SizeOfTreeStack) //-V1044
1097710982
{
1097810983
IM_ASSERT_USER_ERROR(0, "Missing TreePop()");

imgui.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.91.8 WIP
1+
// dear imgui, v1.91.8
22
// (headers)
33

44
// Help:
@@ -28,8 +28,8 @@
2828

2929
// Library Version
3030
// (Integer encoded as XYYZZ for use in #if preprocessor conditionals, e.g. '#if IMGUI_VERSION_NUM >= 12345')
31-
#define IMGUI_VERSION "1.91.8 WIP"
32-
#define IMGUI_VERSION_NUM 19174
31+
#define IMGUI_VERSION "1.91.8"
32+
#define IMGUI_VERSION_NUM 19180
3333
#define IMGUI_HAS_TABLE
3434
#define IMGUI_HAS_VIEWPORT // Viewport WIP branch
3535
#define IMGUI_HAS_DOCK // Docking WIP branch

imgui_demo.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.91.8 WIP
1+
// dear imgui, v1.91.8
22
// (demo code)
33

44
// Help:

imgui_draw.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.91.8 WIP
1+
// dear imgui, v1.91.8
22
// (drawing and font code)
33

44
/*

imgui_internal.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.91.8 WIP
1+
// dear imgui, v1.91.8
22
// (internal structures/api)
33

44
// You may use this file to debug, understand or extend Dear ImGui features but we don't provide any guarantee of forward compatibility.

imgui_tables.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.91.8 WIP
1+
// dear imgui, v1.91.8
22
// (tables and columns code)
33

44
/*

imgui_widgets.cpp

+21-9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.91.8 WIP
1+
// dear imgui, v1.91.8
22
// (widgets code)
33

44
/*
@@ -8665,6 +8665,10 @@ void ImGui::EndMenuBar()
86658665
return;
86668666
ImGuiContext& g = *GImGui;
86678667

8668+
IM_MSVC_WARNING_SUPPRESS(6011); // Static Analysis false positive "warning C6011: Dereferencing NULL pointer 'window'"
8669+
IM_ASSERT(window->Flags & ImGuiWindowFlags_MenuBar);
8670+
IM_ASSERT(window->DC.MenuBarAppending);
8671+
86688672
// Nav: When a move request within one of our child menu failed, capture the request to navigate among our siblings.
86698673
if (NavMoveRequestButNoResultYet() && (g.NavMoveDir == ImGuiDir_Left || g.NavMoveDir == ImGuiDir_Right) && (g.NavWindow->Flags & ImGuiWindowFlags_ChildMenu))
86708674
{
@@ -8691,9 +8695,6 @@ void ImGui::EndMenuBar()
86918695
}
86928696
}
86938697

8694-
IM_MSVC_WARNING_SUPPRESS(6011); // Static Analysis false positive "warning C6011: Dereferencing NULL pointer 'window'"
8695-
IM_ASSERT(window->Flags & ImGuiWindowFlags_MenuBar);
8696-
IM_ASSERT(window->DC.MenuBarAppending);
86978698
PopClipRect();
86988699
PopID();
86998700
window->DC.MenuBarOffset.x = window->DC.CursorPos.x - window->Pos.x; // Save horizontal position so next append can reuse it. This is kinda equivalent to a per-layer CursorPos.
@@ -8766,21 +8767,32 @@ bool ImGui::BeginMainMenuBar()
87668767
float height = GetFrameHeight();
87678768
bool is_open = BeginViewportSideBar("##MainMenuBar", viewport, ImGuiDir_Up, height, window_flags);
87688769
g.NextWindowData.MenuBarOffsetMinVal = ImVec2(0.0f, 0.0f);
8769-
8770-
if (is_open)
8771-
BeginMenuBar();
8772-
else
8770+
if (!is_open)
8771+
{
87738772
End();
8773+
return false;
8774+
}
8775+
8776+
// Temporarily disable _NoSavedSettings, in the off-chance that tables or child windows submitted within the menu-bar may want to use settings. (#8356)
8777+
g.CurrentWindow->Flags &= ~ImGuiWindowFlags_NoSavedSettings;
8778+
BeginMenuBar();
87748779
return is_open;
87758780
}
87768781

87778782
void ImGui::EndMainMenuBar()
87788783
{
8784+
ImGuiContext& g = *GImGui;
8785+
if (!g.CurrentWindow->DC.MenuBarAppending)
8786+
{
8787+
IM_ASSERT_USER_ERROR(0, "Calling EndMainMenuBar() not from a menu-bar!"); // Not technically testing that it is the main menu bar
8788+
return;
8789+
}
8790+
87798791
EndMenuBar();
8792+
g.CurrentWindow->Flags |= ImGuiWindowFlags_NoSavedSettings; // Restore _NoSavedSettings (#8356)
87808793

87818794
// When the user has left the menu layer (typically: closed menus through activation of an item), we restore focus to the previous window
87828795
// FIXME: With this strategy we won't be able to restore a NULL focus.
8783-
ImGuiContext& g = *GImGui;
87848796
if (g.CurrentWindow == g.NavWindow && g.NavLayer == ImGuiNavLayer_Main && !g.NavAnyRequest && g.ActiveId == 0)
87858797
FocusTopMostWindowUnderOne(g.NavWindow, NULL, NULL, ImGuiFocusRequestFlags_UnlessBelowModal | ImGuiFocusRequestFlags_RestoreFocusedChild);
87868798

0 commit comments

Comments
 (0)