Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.4rc4, 0.4, and 0.4.1

thgconfig: Let dialog icon show scope

The configuration dialog now uses two icons instead of one,
so the user can look at the dialog icon and determine if
it is user settings or repo settings that are modified.

The icon for user settings shows a green man
The icon for repo settings shows a yellow barrel

Changeset 67fc68411532

Parent 1625a49de779

by Peer Sommerlund

Changes to 3 files · Browse files at 67fc68411532 Showing diff from parent 1625a49de779 Diff from another changeset...

 
45
46
47
 
48
49
50
51
 
52
53
54
55
56
57
 
45
46
47
48
49
50
51
52
53
54
55
 
56
57
58
@@ -45,13 +45,14 @@
  name = repo.ui.config('web', 'name') or os.path.basename(repo.root)   self.rcpath = [os.sep.join([repo.root, '.hg', 'hgrc'])]   self.set_title('TortoiseHg Configure Repository - ' + name) + shlib.set_tortoise_icon(self, 'settings_repo.ico')   self.root = repo.root   else:   self.rcpath = util.user_rcpath()   self.set_title('TortoiseHg Configure User-Global Settings') + shlib.set_tortoise_icon(self, 'settings_user.ico')   self.root = None   - shlib.set_tortoise_icon(self, 'menusettings.ico')   self.ini = self.load_config(self.rcpath)     # Create a new notebook, place the position of the tabs
Added image
Added image