-
Notifications
You must be signed in to change notification settings - Fork 668
Fix radio buttons #15
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
Closed
Nielsbishere
wants to merge
25
commits into
Immediate-Mode-UI:master
from
Nielsbishere:fix_radio_buttons
Closed
Changes from 4 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
e4133b7
Now detecting if memcpy and memset are actually needed. And same goes…
Nielsbishere 0919f70
https://github.com/vurtun/nuklear/pull/803
Nielsbishere c9980c2
Merge branch 'fix_cpp17' of https://github.com/Nielsbishere/Nuklear i…
Nielsbishere dc951bf
Problem with existing PR was as follows:
Nielsbishere 11aa9a3
https://github.com/vurtun/nuklear/pull/653 zhouxs1023's Modify the ap…
Nielsbishere 842fd02
Fixed readme
Nielsbishere f4d97f5
Fixed logical mistake I made in readme
Nielsbishere 014cd2d
Update nuklear_internal.h
Nielsbishere 0de31b9
Update nuklear_util.c
Nielsbishere be3f371
Repacked nuklear.h and updated package.json
2c6afa7
Delete package-lock.json
Nielsbishere 31492dc
Merged with fixed_cpp17
4ede715
Moved ctx to the stack
8e89387
Merge branch 'fix_click' of https://github.com/Nielsbishere/Nuklear i…
9f8a941
Merge with fix_click and bump version
871f277
Update changelog
15aff92
Fixed indenting and updated changelog
9b05321
Merge branch 'fix_click' of https://github.com/Nielsbishere/Nuklear i…
498c3c1
Updated changelog
2c6db66
Merge https://github.com/Immediate-Mode-UI/Nuklear into fix_cpp17
Nielsbishere 2a415e8
Updated to work with clang
Nielsbishere 792931d
Moved to linux line endings.
Nielsbishere 9aa9729
Merge branch 'fix_cpp17' of https://github.com/Nielsbishere/Nuklear i…
Nielsbishere ccafa56
Merge branch 'fix_click' of https://github.com/Nielsbishere/Nuklear i…
Nielsbishere f7c0f03
Reverted checkboxes to the old looks; because imho it looks better
Nielsbishere 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 hidden or 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
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.
Nitpick: why on heap? It's a small struct and the less allocated memory you have to manage, the better (and more readable).
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.
True, I'll fix this, it's because on my own project there's too much on the stack already.