File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
imgui-binding/src/main/java/imgui Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5543,19 +5543,19 @@ public static ImGuiStorage getStateStorage() {
5543
5543
5544
5544
// Text Utilities
5545
5545
5546
- public final ImVec2 calcTextSize (final String text ) {
5546
+ public static ImVec2 calcTextSize (final String text ) {
5547
5547
final ImVec2 value = new ImVec2 ();
5548
5548
calcTextSize (value , text );
5549
5549
return value ;
5550
5550
}
5551
5551
5552
- public final ImVec2 calcTextSize (final String text , final boolean hideTextAfterDoubleHash ) {
5552
+ public static ImVec2 calcTextSize (final String text , final boolean hideTextAfterDoubleHash ) {
5553
5553
final ImVec2 value = new ImVec2 ();
5554
5554
calcTextSize (value , text , hideTextAfterDoubleHash );
5555
5555
return value ;
5556
5556
}
5557
5557
5558
- public final ImVec2 calcTextSize (final String text , final boolean hideTextAfterDoubleHash , final float wrapWidth ) {
5558
+ public static ImVec2 calcTextSize (final String text , final boolean hideTextAfterDoubleHash , final float wrapWidth ) {
5559
5559
final ImVec2 value = new ImVec2 ();
5560
5560
calcTextSize (value , text , hideTextAfterDoubleHash , wrapWidth );
5561
5561
return value ;
You can’t perform that action at this time.
0 commit comments