mirror of
https://github.com/arsenetar/dupeguru.git
synced 2025-05-08 09:49:51 +00:00
Add comment about Win7 bug
* For some reason the table view doesn't update properly after the test string button is clicked nor when the input field is edited * The table rows only get repainted the rows properly after receiving a mouse click event * This doesn't happen on Linux
This commit is contained in:
parent
b76e86686a
commit
39d353d073
@ -118,6 +118,8 @@ class ExcludeListDialog(QDialog):
|
|||||||
return
|
return
|
||||||
# if at least one row matched, we know whether table is highlighted or not
|
# if at least one row matched, we know whether table is highlighted or not
|
||||||
self._row_matched = self.model.test_string(input_text)
|
self._row_matched = self.model.test_string(input_text)
|
||||||
|
# FIXME There is a bug on Windows (7) where the table rows don't get
|
||||||
|
# repainted until the table receives a mouse click event.
|
||||||
self.tableView.update()
|
self.tableView.update()
|
||||||
|
|
||||||
input_regex = self.inputLine.text()
|
input_regex = self.inputLine.text()
|
||||||
@ -160,5 +162,6 @@ Example: if you want to filter out .PNG files from the "My Pictures" directory o
|
|||||||
<code>.*My\\sPictures\\\\.*\\.png</code><br><br>\
|
<code>.*My\\sPictures\\\\.*\\.png</code><br><br>\
|
||||||
You can test the regular expression with the test string feature by pasting a fake path in it:<br>\
|
You can test the regular expression with the test string feature by pasting a fake path in it:<br>\
|
||||||
<code>C:\\\\User\\My Pictures\\test.png</code><br><br>
|
<code>C:\\\\User\\My Pictures\\test.png</code><br><br>
|
||||||
Matching regular expressions will be highlighted.<br><br>
|
Matching regular expressions will be highlighted.<br>\
|
||||||
|
If there is at least one highlight, the path tested will be ignored during scans.<br><br>\
|
||||||
Directories and files starting with a period '.' are filtered out by default.<br><br>"""))
|
Directories and files starting with a period '.' are filtered out by default.<br><br>"""))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user