# HG changeset patch # User Adrian Buehlmann <adr...@cadifra.com> # Date 1253188978 -7200 # Node ID c395252797ab8f09bf681e296218d67aada78f4c # Parent 431db4a1b49f469c7da6765a444a5cc447b842af status: rearrange layout of file type checkboxes
old: new: M R ? I ? I C ! A ! C M A R Put MAR in the same row since they are related. Using that exact sequence because it is commonly spelled like that among expert hg users. Putting MAR on the _second_ row, because switching them off is done less frequently (they are on by default). Put '?' at top left, since this is toggled most often by users. Put '!' at last position, since unmarking that is rarely done. diff --git a/tortoisehg/hgtk/status.py b/tortoisehg/hgtk/status.py --- a/tortoisehg/hgtk/status.py +++ b/tortoisehg/hgtk/status.py @@ -472,13 +472,13 @@ class GStatus(gdialog.GDialog): def get_status_types(self): # Tuple: (onmerge, ctype, translated label) - allchecks = [(True, 'modified', _('M: modified')), + allchecks = [(False, 'unknown', _('?: unknown')), + (True, 'modified', _('M: modified')), + (False, 'ignored', _('I: ignored')), (True, 'added', _('A: added')), + (False, 'clean', _('C: clean')), (True, 'removed', _('R: removed')), - (False, 'deleted', _('!: deleted')), - (False, 'unknown', _('?: unknown')), - (False, 'clean', _('C: clean')), - (False, 'ignored', _('I: ignored')) ] + (False, 'deleted', _('!: deleted')) ] checks = [] nomerge = (self.count_revs() <= 1) ------------------------------------------------------------------------------ Come build with us! The BlackBerry® Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9-12, 2009. Register now! http://p.sf.net/sfu/devconf _______________________________________________ Tortoisehg-develop mailing list Tortoisehg-develop@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/tortoisehg-develop