Replies: 2 comments 2 replies
-
Looking into how the electron plugin is build I think just doing something similar as the window/current route works looks to me to be more consistent with the application. I'll take a try in making a PR for this. |
Beta Was this translation helpful? Give feedback.
2 replies
-
Yep, this looks great 👍🏼 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
For a app that I am working on I wan't to know which windows are already open.
The Problem
My app I am working on is a monitor where I can monitor information for multiple projects.
Every project will get his own window.
In every window I also want a list of all projects.
If I already have this window open I want to visually already give it a different background color in that list and when you click it instead of opening a new window I want it to focus the window associated with the project.
My idea for a solution
What I would think is a decent solution for this is having a extra function on the
Window
Facade that lists all the currently open windows.Something like
Window::all();
. I do not know if this exact API is the right choice, but lets start the discussion.Beta Was this translation helpful? Give feedback.
All reactions