mirror of
				https://github.com/Drezil/imgui.git
				synced 2025-10-30 20:51:06 +01:00 
			
		
		
		
	Internals: Columns: Tweaks, renaming. Metrics: Show rectangles for child windows.
Renamed SameLine() first parameter.
This commit is contained in:
		
							
								
								
									
										2
									
								
								imgui.h
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								imgui.h
									
									
									
									
									
								
							| @@ -332,7 +332,7 @@ namespace ImGui | ||||
|     // - By "cursor" we mean the current output position. | ||||
|     // - The typical widget behavior is to output themselves at the current cursor position, then move the cursor one line down. | ||||
|     IMGUI_API void          Separator();                                                    // separator, generally horizontal. inside a menu bar or in horizontal layout mode, this becomes a vertical separator. | ||||
|     IMGUI_API void          SameLine(float local_pos_x = 0.0f, float spacing_w = -1.0f);    // call between widgets or groups to layout them horizontally. X position given in window coordinates. | ||||
|     IMGUI_API void          SameLine(float offset_from_start_x=0.0f, float spacing=-1.0f);  // call between widgets or groups to layout them horizontally. X position given in window coordinates. | ||||
|     IMGUI_API void          NewLine();                                                      // undo a SameLine() or force a new line when in an horizontal-layout context. | ||||
|     IMGUI_API void          Spacing();                                                      // add vertical spacing. | ||||
|     IMGUI_API void          Dummy(const ImVec2& size);                                      // add a dummy item of given size. unlike InvisibleButton(), Dummy() won't take the mouse click or be navigable into. | ||||
|   | ||||
		Reference in New Issue
	
	Block a user