-
Notifications
You must be signed in to change notification settings - Fork 578
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Extend window's panel clipping area to take into account the padding #704
Open
ryuukk
wants to merge
6
commits into
Immediate-Mode-UI:master
Choose a base branch
from
ryuukk:fix-panel-clipping
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
3f1284d
extend panel's clipping area to take into account the padding
ryuukk 2b2ec49
Add comments + limit checks
ryuukk 2088e49
Fix typo
ryuukk bffdc13
Only for windows
ryuukk efc5411
Typo
ryuukk a4590db
Do the same for all other kind of panel
ryuukk File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Try these changes instead, instead of changing the clip after
nk_unify
.Fixes the issue with
nk_tree
while doing the thing you intended.(Note that with vertical bounds changed like this, windows' heights in user code may need slight increase to accommodate; e.g. in one of my use case I need to increase the default window height to hide vertical scrollbar again)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also while looking at this I've noticed that in
nk_panel_get_padding
/nk_panel_get_border
/nk_panel_get_border_color
,case NK_PANEL_TOOLTIP
usesmenu_*
instead oftooltip_*
in the current code base. Might as well fix this while we're at it.Edit: patch here
Hopefully this doesn't break anything.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Found out that the
layout->bounds.y
andlayout->bounds.h
change breaks group layout.Can be fixed by
And maybe this change as well (didn't break anything visibly but this change make things consistent)