Skip to content

Commit

Permalink
Character's filter in resize dialog fixed;
Browse files Browse the repository at this point in the history
Merge branch 'fix-resize-filterproxy'
  • Loading branch information
riuson committed Mar 5, 2013
2 parents e384518 + dd6d000 commit b1e5f17
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion controls/resize/imagesfilterproxy.cpp
Expand Up @@ -37,7 +37,7 @@ bool ImagesFilterProxy::filterAcceptsColumn(int source_column, const QModelIndex
QModelIndex index = this->sourceModel()->index(0, source_column, source_parent); QModelIndex index = this->sourceModel()->index(0, source_column, source_parent);
QString name = this->sourceModel()->data(index).toString(); QString name = this->sourceModel()->data(index).toString();


return (this->mKeys->contains(name, Qt::CaseInsensitive)); return (this->mKeys->contains(name, Qt::CaseSensitive));
} }
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
void ImagesFilterProxy::setFilter(const QStringList &keys) void ImagesFilterProxy::setFilter(const QStringList &keys)
Expand Down
14 changes: 14 additions & 0 deletions resources/history.xml
Expand Up @@ -5,12 +5,26 @@
<sha1>current</sha1> <sha1>current</sha1>
<date>current</date> <date>current</date>
</commit> </commit>
<description>Fixed:
Character's filter in resize dialog.</description>
</record>
<record>
<commit>
<sha1>e3845185e979677235a2d12243b675b96ce225c6</sha1>
<date>2013-02-10 09:49:25 +0600</date>
</commit>
<description>Added: <description>Added:
Unicode blocks; Unicode blocks;
New tag names; New tag names;
Changed 'Resize' dialog; Changed 'Resize' dialog;
Font preview's size can be changed by Ctrl+Wheel; Font preview's size can be changed by Ctrl+Wheel;
A separate dialog box to check for updates.</description> A separate dialog box to check for updates.</description>
<downloads>
<item>
<name>Application for Windows (7.7 MB)</name>
<url>http://code.google.com/p/lcd-image-converter/downloads/detail?name=lcd-image-converter-20130210-e3845185e979.zip</url>
</item>
</downloads>
</record> </record>
<record> <record>
<commit> <commit>
Expand Down

0 comments on commit b1e5f17

Please sign in to comment.