gtk3: don't show "missing" icon for each submenu

BUG=none
TEST=manually

Review URL: https://codereview.appspot.com/6211072
This commit is contained in:
Daiki Ueno 2012-05-23 09:55:38 +09:00
Родитель 4bee2863e8
Коммит b745ea21b1
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -126,7 +126,8 @@ public class PropImageMenuItem : Gtk.ImageMenuItem, IPropItem {
private void sync() {
set_label(m_property.get_label().get_text());
set_icon(m_property.get_icon());
if (m_property.get_icon() != "")
set_icon(m_property.get_icon());
set_visible(m_property.get_visible());
set_sensitive(m_property.get_sensitive());
}