Browse Source

fix: typo in pevious added `ArrowButton` api

flydev 1 week ago
parent
commit
ff89ff9d77
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/PasImGui.pas

+ 1 - 1
src/PasImGui.pas

@@ -376,7 +376,7 @@ Type
     Class Function Button(_label: AnsiString): Boolean; Overload; //overload for default size (0,0)
     Class Function SmallButton(_label: PAnsiChar): Boolean;
     {$IfDef INLINE} inline;{$EndIf}
-    Class Function ImGui.ArrowButton(_label: PAnsiChar; _dir: ImGuiDir): Boolean;
+    Class Function ArrowButton(_label: PAnsiChar; _dir: ImGuiDir): Boolean;
     {$IfDef INLINE} inline;{$EndIf}
     Class Function InvisibleButton(str_id: PAnsiChar; size: ImVec2;
       flags: ImGuiButtonFlags = ImGuiButtonFlags_None): Boolean;