From 6376a1a5f711e5bf458d7f3b30e6233295e117d4 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Tue, 18 Nov 2003 03:37:43 +0000 Subject: [PATCH] Make the installer's install location dialog box a little more obvious what it is asking. --- stepmania/PBProject/Installer/Helper.mm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/stepmania/PBProject/Installer/Helper.mm b/stepmania/PBProject/Installer/Helper.mm index 185b582c16..0585cac5ca 100644 --- a/stepmania/PBProject/Installer/Helper.mm +++ b/stepmania/PBProject/Installer/Helper.mm @@ -82,6 +82,9 @@ const CString GetPath(const CString& ID) [panel setCanChooseDirectories:YES]; [panel setResolvesAliases:YES]; [panel setAllowsMultipleSelection:NO]; + [panel setPrompt:@"Install"]; + [panel setCanCreateDirectories:YES]; + [panel setTitle:@"Choose a location to install."]; int result = [panel runModalForTypes:[NSArray array]]; // No extensions if (result != NSOKButton)