mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-21 23:20:23 +00:00
Prefs fixes
This commit is contained in:
parent
8090c09e0c
commit
9cf9340aca
2 changed files with 4 additions and 3 deletions
|
@ -32,6 +32,7 @@ public class AppLayoutComp extends Comp<CompStructure<Pane>> {
|
|||
@Override
|
||||
public CompStructure<Pane> createBase() {
|
||||
Map<Comp<?>, ObservableValue<Boolean>> map = model.getEntries().stream()
|
||||
.filter(entry -> entry.comp() != null)
|
||||
.collect(Collectors.toMap(
|
||||
entry -> entry.comp(),
|
||||
entry -> Bindings.createBooleanBinding(
|
||||
|
|
|
@ -100,19 +100,19 @@ public class AppLayoutModel {
|
|||
new Entry(
|
||||
AppI18n.observable("visitGithubRepository"),
|
||||
"mdi2g-github",
|
||||
new AppPrefsComp(),
|
||||
null,
|
||||
() -> Hyperlinks.open(Hyperlinks.GITHUB),
|
||||
new KeyCodeCombination(KeyCode.DIGIT3, KeyCombination.CONTROL_DOWN)),
|
||||
new Entry(
|
||||
AppI18n.observable("discord"),
|
||||
"mdi2d-discord",
|
||||
new AppPrefsComp(),
|
||||
null,
|
||||
() -> Hyperlinks.open(Hyperlinks.DISCORD),
|
||||
new KeyCodeCombination(KeyCode.DIGIT3, KeyCombination.CONTROL_DOWN)),
|
||||
new Entry(
|
||||
AppI18n.observable("api"),
|
||||
"mdi2c-code-json",
|
||||
new AppPrefsComp(),
|
||||
null,
|
||||
() -> Hyperlinks.open(
|
||||
"http://localhost:" + AppBeaconServer.get().getPort()),
|
||||
new KeyCodeCombination(KeyCode.DIGIT3, KeyCombination.CONTROL_DOWN))));
|
||||
|
|
Loading…
Reference in a new issue