Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ subprojects {

ext {
appName = 'vis'
gdxVersion = '1.14.0'
gdxVersion = '1.14.1'
jnaVersion = '4.1.0'
jnaPlatformVersion = '3.5.2'
junitVersion = '4.13.2'
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.4-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
5 changes: 3 additions & 2 deletions ui/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#### Version: 1.5.9-SNAPSHOT (libGDX 1.14.0)

#### Version: 1.5.9-SNAPSHOT (libGDX 1.14.1)
- Updated to libGDX 1.14.1
-
#### Version: 1.5.8 (libGDX 1.14.0)
- Updated to libGDX 1.14.0

Expand Down
2 changes: 1 addition & 1 deletion ui/src/main/java/com/kotcrab/vis/ui/VisUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* @author Kotcrab
*/
public class VisUI {
private static final String TARGET_GDX_VERSION = "1.14.0";
private static final String TARGET_GDX_VERSION = "1.14.1";
private static boolean skipGdxVersionCheck = false;

private static int defaultTitleAlign = Align.left;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ public void next (boolean up) {
textField.focusField();
textField.setCursorPosition(textField.getText().length());
} else
keyboard.show(false);
keyboard.show(null); // TextField argument is ignored by DefaultOnscreenKeyboard
}

private VisTextField findNextTextField (Array<Actor> actors, VisTextField best, Vector2 bestCoords, Vector2 currentCoords, boolean up) {
Expand Down Expand Up @@ -906,7 +906,7 @@ public void focusField () {
//and field was focused. Without it textOffset would stay at max value and only one last letter will be visible in field
calculateOffsets();
if (stage != null) stage.setKeyboardFocus(VisTextField.this);
keyboard.show(true);
keyboard.show(null);
hasSelection = true;
}

Expand Down Expand Up @@ -1034,7 +1034,7 @@ public boolean touchDown (InputEvent event, float x, float y, int pointer, int b
setCursorPosition(x, y);
selectionStart = cursor;
if (stage != null) stage.setKeyboardFocus(VisTextField.this);
if (readOnly == false) keyboard.show(true);
if (!readOnly) keyboard.show(null);
hasSelection = true;
return true;
}
Expand Down
Loading