--- you can reply above this line ---
Issue 738: Trivial issue on adding files on ignore window
https://bitbucket.org/tortoisehg/thg/issue/738/trivial-issue-on-adding-files-on-ignore
André Sintzoff / sintzoff on Tue, 24 May 2011 23:03:02 +0200:
Comment:
The issue seems related to a Qt issue.
Depending on the Qt version, the issue occurs or not.
At least Qt versions 4.6.3 (on Debian) and 4.7 (on Mac OS X) fail. Qt version 4.7.2 (on Ubuntu) does not fail.
For Qt 4.7, I have found a workaround in hgignore.py but I don't understand why it works.
{{{
@@ -204,7 +204,8 @@
self.refresh()
def addEntry(self):
- newfilter = hglib.fromunicode(self.le.text()).strip()
+ utext = hglib.fromunicode(self.le.text())
+ newfilter = utext.strip()
if newfilter == '':
return
if self.recombo.currentIndex() == 0:
}}}
--
This is an issue notification from bitbucket.org. You are receiving
this either because you are the owner of the issue, or you are
following the issue.
|