Rokas Kupstys
Rokas Kupstys
Good to hear! Would you care to try this branch with your application? This PR may have issues or things missing. Real world experience would be invaluable for finishing this...
I found this message: https://gcc.gnu.org/legacy-ml/gcc-help/2003-06/msg00192.html > The backticks aren't interpreted by the makefile, but are passed to the shell. My understanding is that in this particular case it does not...
I pushed idea of "self-contained" further. Here is my version which is all in one file: https://gist.github.com/rokups/e309246e95435cb24435e1cf1672c259 My script is also designed to be in a repository root folder instead...
Feature is definitely useful! I'm just not convinced about presenting the result as output bool parameter as it wont scale well, should we need to present some other hints about...
This looks like a bug with `InputText()`. This behavior stems from the fact that all instances of `InputText()` use a single data structure to store data while they are active....
Hey this is great news! Is there a way to set initial position of the docked window? I am looking to have some kind of default placement of newly opened...
@ocornut creating initial dock layout is clear, but what about setting initial dock placement of new window in already existing layout? Do we have to rebuild entire layout to dock...
Thanks, i got it working easily. Not sure how i missed that. And i hopefully last question: is there a way to set next window dock position to an empty...
I think i want "empty undocked space". I tried `SetNextWindowDockId(dockRoot, ..)` but it just does not dock window anywhere so that must be wrong. What i want to do is...
@ocornut i created a small testcase of what i attempted. Please take a look. ```cpp static int initialized = 0; static int new_window = 0; ImGuiWindowFlags flags = ImGuiWindowFlags_MenuBar; flags...