Skip to content

Commit 5fbc39a

Browse files
committedNov 3, 2013
Fix typo
1 parent 25edae0 commit 5fbc39a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎src/guiFormSpecMenu.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1382,7 +1382,7 @@ void GUIFormSpecMenu::parseBackgroundColor(parserData* data,std::string element)
13821382
void GUIFormSpecMenu::parseListColors(parserData* data,std::string element) {
13831383
std::vector<std::string> parts = split(element,';');
13841384

1385-
if (parts.size() == 2) || (parts.size() == 3) || (parts.size() == 5)) {
1385+
if ((parts.size() == 2) || (parts.size() == 3) || (parts.size() == 5)) {
13861386
parseColor(parts[0], m_slotbg_n, false);
13871387
parseColor(parts[1], m_slotbg_h, false);
13881388

0 commit comments

Comments
 (0)
Please sign in to comment.