|
From: CVS C. to T. <the...@li...> - 2018-03-12 21:55:55
|
Revision: 738
http://sourceforge.net/p/themis/code/738
Author: mark_hellegers
Date: 2018-03-12 21:55:53 +0000 (Mon, 12 Mar 2018)
Log Message:
-----------
Faulty comparison caused wrong icons to be displayed for dynamic prefs
views.
Modified Paths:
--------------
trunk/themis/framework/PrefsWin.cpp
Modified: trunk/themis/framework/PrefsWin.cpp
===================================================================
--- trunk/themis/framework/PrefsWin.cpp 2017-01-15 12:07:44 UTC (rev 737)
+++ trunk/themis/framework/PrefsWin.cpp 2018-03-12 21:55:53 UTC (rev 738)
@@ -409,7 +409,7 @@
type = plugin->Type();
name = plugin->SettingsViewLabel();
if (name != NULL) {
- if (type != TARGET_PARSER) {
+ if (type & TARGET_PARSER) {
fListView->AddItem(
new PrefsListItem(
name,
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|