mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-22 07:30:24 +00:00
Small fixes [release]
This commit is contained in:
parent
6cdc728aa1
commit
685813863b
4 changed files with 7 additions and 6 deletions
|
@ -118,10 +118,10 @@ public class StoreSection {
|
|||
}
|
||||
|
||||
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());
|
||||
});
|
||||
|
|
|
@ -33,8 +33,8 @@ public class 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"));
|
||||
|
|
1
dist/changelogs/1.7.2.md
vendored
1
dist/changelogs/1.7.2.md
vendored
|
@ -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
|
||||
|
|
2
version
2
version
|
@ -1 +1 @@
|
|||
1.7.2-4
|
||||
1.7.2
|
Loading…
Reference in a new issue