Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
BlockMen committed Nov 3, 2013
1 parent 25edae0 commit 5fbc39a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/guiFormSpecMenu.cpp
Expand Up @@ -1382,7 +1382,7 @@ void GUIFormSpecMenu::parseBackgroundColor(parserData* data,std::string element)
void GUIFormSpecMenu::parseListColors(parserData* data,std::string element) {
std::vector<std::string> parts = split(element,';');

if (parts.size() == 2) || (parts.size() == 3) || (parts.size() == 5)) {
if ((parts.size() == 2) || (parts.size() == 3) || (parts.size() == 5)) {
parseColor(parts[0], m_slotbg_n, false);
parseColor(parts[1], m_slotbg_h, false);

Expand Down

0 comments on commit 5fbc39a

Please sign in to comment.