Skip to content

Commit

Permalink
menu icon should not in center of screen
Browse files Browse the repository at this point in the history
  • Loading branch information
MrXiaoM committed Feb 20, 2025
1 parent 211d2f9 commit 2c5d4c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions FCL/src/main/java/com/tungsten/fcl/setting/MenuSetting.kt
Original file line number Diff line number Diff line change
Expand Up @@ -76,15 +76,15 @@ class MenuSetting {
}

val menuPositionXProperty: DoubleProperty =
SimpleDoubleProperty(this, "menuPositionX", 0.5)
SimpleDoubleProperty(this, "menuPositionX", 0.65)
var menuPositionX: Double
get() = menuPositionXProperty.get()
set(menuPositionX) {
menuPositionXProperty.set(menuPositionX)
}

val menuPositionYProperty: DoubleProperty =
SimpleDoubleProperty(this, "menuPositionY", 0.5)
SimpleDoubleProperty(this, "menuPositionY", 0.0)
var menuPositionY: Double
get() = menuPositionYProperty.get()
set(menuPositionY) {
Expand Down

0 comments on commit 2c5d4c6

Please sign in to comment.