UI Tweak: Make User Preferences window slightly taller, to better fit the contents

This commit is contained in:
Joshua Leung 2018-05-22 16:10:15 +02:00
parent 6781fac42e
commit 6f127b22e6
1 changed files with 1 additions and 1 deletions

View File

@ -4162,7 +4162,7 @@ static void SCREEN_OT_back_to_previous(struct wmOperatorType *ot)
static int userpref_show_invoke(bContext *C, wmOperator *op, const wmEvent *event)
{
int sizex = 800 * UI_DPI_FAC;
int sizey = 480 * UI_DPI_FAC;
int sizey = 500 * UI_DPI_FAC;
/* changes context! */
if (WM_window_open_temp(C, event->x, event->y, sizex, sizey, WM_WINDOW_USERPREFS) != NULL) {