Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.1, 1.1.1, and 1.1.2

history: tweak format of custom filter in window title

Refs #1028

Changeset d2592647454a

Parent ea99f13eaaa4

by Yuki KODAMA

Changes to one file · Browse files at d2592647454a Showing diff from parent ea99f13eaaa4 Diff from another changeset...

 
1141
1142
1143
1144
 
1145
1146
1147
1148
1149
1150
 
 
1151
1152
1153
 
1141
1142
1143
 
1144
1145
1146
1147
1148
 
 
1149
1150
1151
1152
1153
@@ -1141,13 +1141,13 @@
  if len(npats) == 1:   kind, name = match._patsplit(npats[0], None)   if kind == 'path' and not os.path.isdir(name): - ftitle(_('file history: ') + hglib.toutf(name)) + ftitle(_('file patterns "%s"') % hglib.toutf(name))   lname = hglib.fromutf(name)   opts['filehist'] = lname   self.graphview.refresh(graphcol, [lname], opts)   if not opts.get('filehist'): - ftitle('%s: %s' % (self.filtercombo.get_active_text(), - self.filterentry.get_text())) + ftitle('%s "%s"' % (self.filtercombo.get_active_text(), + self.filterentry.get_text()))   self.graphview.refresh(False, npats, opts)   filtertext += self.filtercombo.get_active_text()   elif self.filter == 'all':