minits progress
This commit is contained in:
@@ -11,17 +11,21 @@ function tab_console_draw(htab: zui_handle_t) {
|
||||
zui_begin_sticky();
|
||||
///if (krom_windows || krom_linux || krom_darwin) // Copy
|
||||
if (config_raw.touch_ui) {
|
||||
zui_row([1 / 4, 1 / 4, 1 / 4]);
|
||||
let row: f32[] = [1 / 4, 1 / 4, 1 / 4];
|
||||
zui_row(row);
|
||||
}
|
||||
else {
|
||||
zui_row([1 / 14, 1 / 14, 1 / 14]);
|
||||
let row: f32[] = [1 / 14, 1 / 14, 1 / 14];
|
||||
zui_row(row);
|
||||
}
|
||||
///else
|
||||
if (config_raw.touch_ui) {
|
||||
zui_row([1 / 4, 1 / 4]);
|
||||
let row: f32[] = [1 / 4, 1 / 4];
|
||||
zui_row(row);
|
||||
}
|
||||
else {
|
||||
zui_row([1 / 14, 1 / 14]);
|
||||
let row: f32[] = [1 / 14, 1 / 14];
|
||||
zui_row(row);
|
||||
}
|
||||
///end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user