You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code below creates window, which is not always on top
`
// Set the window description
clan::DisplayWindowDescription desc_window;
desc_window.set_title("Motion Learning");
desc_window.set_topmost();
desc_window.set_popup_window();
desc_window.set_allow_resize(false);
desc_window.set_layered(true);
desc_window.show_caption(false);
desc_window.set_size(clan::Size(1792, 828), false);
// Open the windows
window = clan::DisplayWindow(desc_window);
`
The text was updated successfully, but these errors were encountered:
The code below creates window, which is not always on top
`
`
The text was updated successfully, but these errors were encountered: