Skip to content
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

Split NK_WINDOW_NO_SCROLLBAR into 2 flags #686

Draft
wants to merge 5 commits into
base: master
Choose a base branch
from

Conversation

PROP65
Copy link
Contributor

@PROP65 PROP65 commented Sep 8, 2024

Splits NK_WINDOW_NO_SCROLLBAR into separate horizontal and vertical flags.

/* Removes the horizontal scrollbar from the window */
NK_WINDOW_NO_SCROLLBAR_H = NK_FLAG(5)
/* Removes the vertical scrollbar from the window */
NK_WINDOW_NO_SCROLLBAR_V = NK_FLAG(6)
/* Removes both scrollbars from the window */
NK_WINDOW_NO_SCROLLBAR   = NK_WINDOW_NO_SCROLLBAR_H | NK_WINDOW_NO_SCROLLBAR_V

Needs more testing.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant