Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
dustdustinthewind committed Jan 27, 2020
2 parents bdf6f8d + 8f9d88f commit 5230e35
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Searchbox entering the names of keys instead of proper typing (i.e. "space", "leftalt")
- Positioning of the elements on ScoreCards and the Grade on the result screen.
- Leaderboards only showing at max the same amount of ranks as there were beatmap cards on the screen.
- Sliders not dragging.

## [1.3.1-alpha] - 2020-01-26

Expand Down
2 changes: 1 addition & 1 deletion Pulsarc/UI/Screens/Settings/SettingsScreenView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ private void handleSingleClicks()

private void handleMouseHoldInput()
{
Point pos = InputManager.LastMouseClick.Key.Position;
Point pos = InputManager.MouseState.Position;

if (MouseManager.CurrentState.LeftButton == ButtonState.Pressed)
foreach (SettingsGroup settingsGroup in Groups)
Expand Down
1 change: 0 additions & 1 deletion Pulsarc/UI/Screens/Settings/UI/Slider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ public void Update()

public void SetSelectorPercent(float percent)
{
PulsarcLogger.Debug(percent.ToString(), LogType.Runtime);
SetSelector((int) (MinValue + (MaxValue - MinValue) * percent));
}

Expand Down

0 comments on commit 5230e35

Please sign in to comment.