From 8ae8949b10056d4abb076fab7da1248c8871b6a7 Mon Sep 17 00:00:00 2001 From: Ccomp5950 Date: Tue, 11 Feb 2014 00:56:42 -0600 Subject: [PATCH] NanoUI PDA - Decreasing initial size of the screen. Gonna miss my XBOX-LARGE pda screen. --- code/game/objects/items/devices/PDA/PDA.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/devices/PDA/PDA.dm b/code/game/objects/items/devices/PDA/PDA.dm index b57af2d919..5fc226be19 100755 --- a/code/game/objects/items/devices/PDA/PDA.dm +++ b/code/game/objects/items/devices/PDA/PDA.dm @@ -444,7 +444,7 @@ var/global/list/obj/item/device/pda/PDAs = list() if (!ui) // the ui does not exist, so we'll create a new() one // for a list of parameters and their descriptions see the code docs in \code\modules\nano\nanoui.dm - ui = new(user, src, ui_key, "pda.tmpl", title, 630, 600) + ui = new(user, src, ui_key, "pda.tmpl", title, 520, 400) // when the ui is first opened this is the data it will use ui.set_initial_data(data) // open the new ui window