mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-09-26 02:15:47 +00:00
Prefs fixes
This commit is contained in:
@@ -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))));
|
||||
|
||||
Reference in New Issue
Block a user