From 0f24b368e73610b45bcc7824ddddad0434edb994 Mon Sep 17 00:00:00 2001 Message-Id: <0f24b368e73610b45bcc7824ddddad0434edb994.1715088180.git.mdw@distorted.org.uk> From: Mark Wooding Date: Fri, 19 Oct 2007 21:12:30 +0100 Subject: [PATCH] macdink the login box Organization: Straylight/Edgeware From: Richard Kettlewell --- disobedience/login.c | 8 ++++---- doc/disobedience.1.in | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/disobedience/login.c b/disobedience/login.c index c6e91ec..0a2aeb3 100644 --- a/disobedience/login.c +++ b/disobedience/login.c @@ -186,17 +186,17 @@ static const struct button buttons[] = { { "Login", login_ok, - "Login with these settings", + "(Re-)connect using these settings", }, { GTK_STOCK_SAVE, login_save, - "Save these settings", + "Save these settings and close window", }, { - GTK_STOCK_CANCEL, + GTK_STOCK_CLOSE, login_cancel, - "Discard all changes and close window" + "Discard changes and close window" }, }; diff --git a/doc/disobedience.1.in b/doc/disobedience.1.in index d68feec..912a9c6 100644 --- a/doc/disobedience.1.in +++ b/doc/disobedience.1.in @@ -206,8 +206,8 @@ settings. The settings are not saved. This button saves the current settings in .IR $HOME/.disorder/passwd . .TP -.B Cancel -This button closes the window. +.B Close +This button closes the window, discarding any unsaved changes. .SS "Properties Window" This window contains details of one or more tracks and allows them to be edited. -- [mdw]