Skip to content

Commit

Permalink
Fix PromptDialogs not accepting input by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Rian8337 committed Mar 3, 2025
1 parent 3ea36ec commit 33987f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/reco1l/osu/ui/PromptDialog.kt
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ open class PromptDialog : MessageDialog() {
/**
* The input type of the EditText.
*/
var inputType: Int = InputType.TYPE_NULL
var inputType: Int = InputType.TYPE_CLASS_TEXT
set(value) {
field = value
if (isCreated) {
Expand Down

0 comments on commit 33987f0

Please sign in to comment.