Skip to content
Snippets Groups Projects
Commit d79f3de2 authored by Tobias Ullerich's avatar Tobias Ullerich
Browse files

Fixed TouchMode Volume Slider, Search Feedback dialog

parent 021dd47c
No related branches found
No related tags found
No related merge requests found
...@@ -50,6 +50,7 @@ public class DesktopSearchController implements EventHandler<ActionEvent> { ...@@ -50,6 +50,7 @@ public class DesktopSearchController implements EventHandler<ActionEvent> {
if (searchResult.isEmpty()) { if (searchResult.isEmpty()) {
mainView.showInfoMessage(Localization.getString(Strings.Search_Alert_NoMatches), PlayPadMain.stageIcon.orElse(null)); mainView.showInfoMessage(Localization.getString(Strings.Search_Alert_NoMatches), PlayPadMain.stageIcon.orElse(null));
return;
} }
if (currentIndex < searchResult.size()) { if (currentIndex < searchResult.size()) {
......
...@@ -43,6 +43,11 @@ public class TouchMenuToolbarViewController extends BasicMenuToolbarViewControll ...@@ -43,6 +43,11 @@ public class TouchMenuToolbarViewController extends BasicMenuToolbarViewControll
icon.setSize(35); icon.setSize(35);
} }
@Override
public void init() {
volumeSlider.focusedProperty().addListener(i -> mainViewController.getParent().requestFocus());
}
@Override @Override
public void initPageButtons() { public void initPageButtons() {
pageHBox.getChildren().clear(); pageHBox.getChildren().clear();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment