Skip to content

Commit

Permalink
mainwindow: Add '...' to fetch, push, pull, and stash buttons
Browse files Browse the repository at this point in the history
These launch a separate dialog so use '...' to provide a visual indication.

Closes #51

Signed-off-by: David Aguilar <davvid@gmail.com>
  • Loading branch information
davvid committed Jun 2, 2010
1 parent 89f0036 commit 904b126
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cola/views/mainwindow.py
Expand Up @@ -33,10 +33,10 @@ def __init__(self, parent=None):
self.rescan_button = qt.create_button('Rescan', layout)
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.pull_button = qt.create_button('Pull', layout)
self.stash_button = qt.create_button('Stash', layout)
self.fetch_button = qt.create_button('Fetch...', 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)
self.alt_button.hide()

Expand Down

0 comments on commit 904b126

Please sign in to comment.