mirror of
				https://github.com/Drezil/imgui.git
				synced 2025-10-31 05:01:05 +01:00 
			
		
		
		
	Popups: Fix popups being closed by newly appearing windows. (#4317)
* Popups/modals now remain open when new windows are created from within popup/modal begin stack. * Modals are not closed when new window appears behind active modal. Tested by "window_popup_interruptions"
This commit is contained in:
		| @@ -45,6 +45,10 @@ Other Changes: | ||||
|   (so IsMouseDoubleClicked(ImGuiMouseButton_Left) is same as GetMouseClickedCount(ImGuiMouseButton_Left) == 2, | ||||
|   but it allows testing for triple clicks and more). | ||||
| - Modals: fixed issue hovering popups inside a child inside a modal. (#4676, #4527) | ||||
| - Modals, Popups, Windows: changes how appearing windows are interrupting popups and modals. (#4317) [@rokups] | ||||
|   - appearing windows created from within the begin stack of a popup/modal will no longer close it. | ||||
|   - appearing windows created not within the begin stack of a modal will no longer close the modal, | ||||
|     and automatically appear behind it. | ||||
| - Fixed IsWindowFocused()/IsWindowHovered() issues with childs inside popups. (#4676) | ||||
| - Nav: Ctrl+tabbing to cycle through windows is now enabled regardless of using the _NavEnableKeyboard | ||||
|   configuration flag. This is part of an effort to generalize the use of keyboard inputs. (#4023, #787). | ||||
|   | ||||
		Reference in New Issue
	
	Block a user