Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
silencer-pl committed Jul 7, 2023
1 parent 6cb1a17 commit b1c84e9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion code/game/atoms.dm
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ Parameters are passed from New.
return TRUE

if(href_list["desc_lore"])
show_browser(usr, "<BODY><TT>[replacetext(desc_lore, "\n", "<BR>")]</TT></BODY>", name, name, "size=500x200")
show_browser(usr, "<BODY><TT>[replacetext(desc_lore, "\n", "<BR>")]</TT></BODY>", name, name, "size=500x500")
onclose(usr, "[name]")

///This proc is called on atoms when they are loaded into a shuttle
Expand Down
2 changes: 1 addition & 1 deletion code/modules/admin/verbs/custom_paper.dm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
if(new_sheet)
qdel(sheet)
return
show_browser(usr, "<body class='paper'>[new_text]</body>", "Custom paper preview", "custom_paper_preview", "size=500x400")
show_browser(usr, "<body class='paper'>[new_text]</body>", "Custom paper preview", "custom_paper_preview", "size=650x900")
if(alert(usr, "Make this new content?", "Customising [new_name]", "OK", "Cancel") == "Cancel")
close_browser(usr, "custom_paper_preview")
if(new_sheet)
Expand Down
4 changes: 2 additions & 2 deletions code/modules/paperwork/paper.dm
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
if(photo_list)
for(var/photo in photo_list)
user << browse_rsc(photo_list[photo], photo)
show_browser(user, "<BODY class='paper'>[stars(info)][stamps]</BODY>", name, name)
show_browser(user, "<BODY class='paper'>[stars(info)][stamps]</BODY>", name, name, "size=650x700")
onclose(user, name)
else
read_paper(user)
Expand All @@ -94,7 +94,7 @@
if(photo_list)
for(var/photo in photo_list)
user << browse_rsc(photo_list[photo], photo)
show_browser(user, "<BODY class='paper'>[info][stamps]</BODY>", name, name)
show_browser(user, "<BODY class='paper'>[info][stamps]</BODY>", name, name, "size=650x700")
onclose(user, name)

/obj/item/paper/verb/rename()
Expand Down

0 comments on commit b1c84e9

Please sign in to comment.