DVUI

raiseSubwindow

Raise a subwindow to the top of the stack.

Any subwindows directly above it with "stay_above_parent_window" set will also be moved to stay above it.

Only valid between Window.beginand Window.end.

Parameters

#
subwindow_id:Id
Id

Source

Implementation

#
pub fn raiseSubwindow(subwindow_id: Id) void {
    const cw = currentWindow();
    cw.subwindows.raise(subwindow_id) catch |err| {
        logError(@src(), err, "subwindow id {x}", .{subwindow_id});
    };
}