mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 08:38:20 +00:00
[client] overlay/config: switch to use new URL widget when possible
This commit is contained in:
parent
08f3ad504c
commit
6bd454f77f
@ -101,7 +101,7 @@ static int config_render(void * udata, bool interactive, struct Rect * windowRec
|
||||
if (igCollapsingHeaderBoolPtr("About Looking Glass", NULL, 0))
|
||||
{
|
||||
igText(LG_COPYRIGHT_STR);
|
||||
igText(LG_WEBSITE_STR);
|
||||
overlayTextURL(LG_WEBSITE_STR, NULL);
|
||||
igText(LG_VERSION_STR);
|
||||
igSeparator();
|
||||
igTextWrapped(LG_LICENSE_STR);
|
||||
@ -116,7 +116,7 @@ static int config_render(void * udata, bool interactive, struct Rect * windowRec
|
||||
igTableNextColumn();
|
||||
igBulletText(help->name);
|
||||
igTableNextColumn();
|
||||
igTextWrapped(help->value);
|
||||
overlayTextMaybeURL(help->value, true);
|
||||
}
|
||||
igEndTable();
|
||||
}
|
||||
@ -145,7 +145,7 @@ static int config_render(void * udata, bool interactive, struct Rect * windowRec
|
||||
igTableNextColumn();
|
||||
igBulletText(donate->name);
|
||||
igTableNextColumn();
|
||||
igText(donate->value);
|
||||
overlayTextMaybeURL(donate->value, false);
|
||||
}
|
||||
igEndTable();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user