Skip to content

Commit

Permalink
Small fixes [release]
Browse files Browse the repository at this point in the history
  • Loading branch information
crschnick committed Oct 26, 2023
1 parent 6cdc728 commit 6858138
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions app/src/main/java/io/xpipe/app/comp/store/StoreSection.java
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,10 @@ private static StoreSection create(
}

var allChildren = BindingsHelper.filteredContentBinding(all, other -> {
if (true) return DataStorage.get()
.getDisplayParent(other.getEntry())
.map(found -> found.equals(e.getEntry()))
.orElse(false);
// if (true) return DataStorage.get()
// .getDisplayParent(other.getEntry())
// .map(found -> found.equals(e.getEntry()))
// .orElse(false);
// This check is fast as the children are cached in the storage
return DataStorage.get().getStoreChildren(e.getEntry()).contains(other.getEntry());
});
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/io/xpipe/app/core/AppTrayIcon.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ public AppTrayIcon() {
var url = AppResources.getResourceURL(AppResources.XPIPE_MODULE, image).orElseThrow();

this.trayIcon = new TrayIcon(loadImageFromURL(url), App.getApp().getStage().getTitle(), popupMenu);
this.trayIcon.setImageAutoSize(false);
this.trayIcon.setToolTip("XPipe");
this.trayIcon.setImageAutoSize(true);

{
var open = new MenuItem(AppI18n.get("open"));
Expand Down
1 change: 1 addition & 0 deletions dist/changelogs/1.7.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ This one-time payment also makes it possible accept a lot more payment methods t

### Other changes

- Fix refresh of connections leading to an inconsistent state and some connections not being displayed
- The CI pipeline is now fully automated including ARM builds for Linux and macOS
- Improve startup time on Linux and macOS by skipping tray initialization
- Add support for tray icon on newer Gnome desktop environments
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.7.2-4
1.7.2

0 comments on commit 6858138

Please sign in to comment.