From 1cc942976f8cf824bf46f2279ab7406930e1ddb3 Mon Sep 17 00:00:00 2001 From: David Aguilar Date: Sat, 24 Jul 2010 11:52:39 -0700 Subject: [PATCH] mainwindow: Make action button labels consistent 'Push...' should have three trailing dots. Signed-off-by: David Aguilar --- cola/views/mainwindow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cola/views/mainwindow.py b/cola/views/mainwindow.py index 6b1d5c8b..923e842d 100644 --- a/cola/views/mainwindow.py +++ b/cola/views/mainwindow.py @@ -34,7 +34,7 @@ class MainWindow(MainWindowBase): self.stage_button = qt.create_button('Stage', layout) self.unstage_button = qt.create_button('Unstage', layout) self.fetch_button = qt.create_button('Fetch...', layout) - self.push_button = qt.create_button('Push..', layout) + self.push_button = qt.create_button('Push...', layout) self.pull_button = qt.create_button('Pull...', layout) self.stash_button = qt.create_button('Stash...', layout) self.alt_button = qt.create_button('Exit Diff Mode', layout) -- 2.11.4.GIT