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

Fix measure gizmo "Copy to Clipboard" button icon for dark mode #5230

Merged
merged 1 commit into from
May 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/imgui/imconfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -201,14 +201,14 @@ namespace ImGui
const wchar_t BlockNotifErrorIcon = 0x0835;
const wchar_t ClipboardBtnDarkIcon = 0x0836;

const wchar_t PrevArrowBtnIcon = 0x0836;
const wchar_t PrevArrowHoverBtnIcon = 0x0837;
const wchar_t NextArrowBtnIcon = 0x0838;
const wchar_t NextArrowHoverBtnIcon = 0x0839;
const wchar_t OpenArrowIcon = 0x0840;
const wchar_t CollapseArrowIcon = 0x0841;
const wchar_t ExpandArrowIcon = 0x0842;
const wchar_t CompleteIcon = 0x0843;
const wchar_t PrevArrowBtnIcon = 0x0837;
const wchar_t PrevArrowHoverBtnIcon = 0x0838;
const wchar_t NextArrowBtnIcon = 0x0839;
const wchar_t NextArrowHoverBtnIcon = 0x0840;
const wchar_t OpenArrowIcon = 0x0841;
const wchar_t CollapseArrowIcon = 0x0842;
const wchar_t ExpandArrowIcon = 0x0843;
const wchar_t CompleteIcon = 0x0844;

// void MyFunction(const char* name, const MyMatrix44& v);
}
Expand Down