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

Draw a tooltip if the user mouses over the spice icon #1042

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
capitalize
  • Loading branch information
babbaj committed Nov 9, 2022
commit 875acaa397be480b3e1b6fa983fd7689aee374bf
2 changes: 1 addition & 1 deletion client/src/overlay/status.c
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ static int status_render(void * udata, bool interactive, struct Rect * windowRec
const double y = g_state.io->MousePos.y;
if (x >= bottomLeft.x && y <= bottomLeft.y && x <= topRight.x && y >= topRight.y) {
igBeginTooltipEx(ImGuiTooltipFlags_None, ImGuiWindowFlags_None);
igText("Using looking glass through SPICE emulation, there is likely a problem with your setup");
igText("Using Looking Glass through SPICE emulation, there is likely a problem with your setup");
ImVec2 windowPos;
ImVec2 windowSize;
igGetWindowPos(&windowPos);
Expand Down