mirror of
				https://github.com/Drezil/imgui.git
				synced 2025-10-31 13:11:05 +01:00 
			
		
		
		
	Internals: Added support for overriding locale decimal point, undocumented. (#2278) + Misc doc update.
Doc: Mention IMGUI_VERSION_NUM in recent api breaking changes + textwrap some demo code.
This commit is contained in:
		| @@ -1290,6 +1290,7 @@ struct ImGuiContext | ||||
|     // Platform support | ||||
|     ImVec2                  PlatformImePos;                     // Cursor position request & last passed to the OS Input Method Editor | ||||
|     ImVec2                  PlatformImeLastPos; | ||||
|     char                    PlatformLocaleDecimalPoint;         // '.' or *localeconv()->decimal_point | ||||
|  | ||||
|     // Settings | ||||
|     bool                    SettingsLoaded; | ||||
| @@ -1440,6 +1441,7 @@ struct ImGuiContext | ||||
|         TooltipOverrideCount = 0; | ||||
|  | ||||
|         PlatformImePos = PlatformImeLastPos = ImVec2(FLT_MAX, FLT_MAX); | ||||
|         PlatformLocaleDecimalPoint = '.'; | ||||
|  | ||||
|         SettingsLoaded = false; | ||||
|         SettingsDirtyTimer = 0.0f; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user