Commit d712fe33 authored by captainwong's avatar captainwong

fix qt IconBtn ing status

parent 3c934946
......@@ -106,6 +106,8 @@ void IconBtn::refresh()
icon_path = icon_path_[IconStatus::status_press];
} else if ((is_hover_ || is_highlight_) && icon_path_.find(IconStatus::status_hover) != icon_path_.end()) {
icon_path = icon_path_[IconStatus::status_hover];
} else if ((is_ing_) && icon_path_.find(IconStatus::status_ing) != icon_path_.end()) {
icon_path = icon_path_[IconStatus::status_ing];
} else if (icon_path_.find(IconStatus::status_normal) != icon_path_.end()) {
icon_path = icon_path_[IconStatus::status_normal];
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment