Skip to content
Snippets Groups Projects
Commit f203d5df authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Set a better default window for uifc.showbuf()

Rather than defaulting to zero lines high and the width of the title,
default to the entire screen area.
parent a84bb2cf
Branches
Tags
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #1694 passed
......@@ -1064,8 +1064,8 @@ js_uifc_showbuf(JSContext *cx, uintN argc, jsval *arglist)
char* title = NULL;
int32 left=0;
int32 top=0;
int32 width=0;
int32 height=0;
int32 width=INT_MAX;
int32 height=INT_MAX;
int32 mode=0;
int *cur = NULL;
int *bar = NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment