From 3b5696981485144f2f721f8178abb01453660389 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Fri, 18 Sep 2009 09:54:29 +0000 Subject: [PATCH] Added tool tips to the non-obvious buttons. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33169 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/installer/InstallerWindow.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/apps/installer/InstallerWindow.cpp b/src/apps/installer/InstallerWindow.cpp index 88b84f36b6..c14280b2c6 100644 --- a/src/apps/installer/InstallerWindow.cpp +++ b/src/apps/installer/InstallerWindow.cpp @@ -251,6 +251,20 @@ InstallerWindow::InstallerWindow() fSizeViewLayoutItem->SetVisible(false); fProgressLayoutItem->SetVisible(false); + // Setup tool tips for the non-obvious features + fSetupButton->SetToolTip( + "Launch the DriveSetup utility to partition\n" + "available hard drives and other media.\n" + "Partitions can be initialized with the\n" + "Be File System needed for a Haiku boot\n" + "partition."); + fMakeBootableButton->SetToolTip( + "Writes the Haiku boot code to the partition start\n" + "sector. This step is automatically performed by\n" + "the installation, but you can manually make a\n" + "partition bootable in case you do not need to\n" + "perform an installation."); + // finish creating window if (!be_roster->IsRunning(kDeskbarSignature)) SetFlags(Flags() | B_NOT_MINIMIZABLE);