代码之家  ›  专栏  ›  技术社区  ›  Leon

米努巴救济

  •  0
  • Leon  · 技术社区  · 14 年前

    我正在创建一个Gnome pannel小程序。我已向小程序添加了菜单栏,但似乎无法设置菜单栏上的释压。有人知道我怎么编辑吗?

    我只希望在工具栏悬停或子菜单折叠时显示浮雕。 这就是它现在的样子: http://i.stack.imgur.com/7i8C9.png

    提前谢谢!

    1 回复  |  直到 14 年前
        1
  •  0
  •   Leon    14 年前

    没有关系。找到它:

        gtk.rc_parse_string("""
            style "globalmenu_event_box_style"
            {
                GtkWidget::focus-line-width=0
                GtkWidget::focus-padding=0
            }
            style "globalmenu_menu_bar_style"
            {
                ythickness = 0
                GtkMenuBar::shadow-type = none
                GtkMenuBar::internal-padding = 0
            }
            class "GtkEventBox" style "globalmenu_event_box_style"
            class "GtkMenuBar" style:highest "globalmenu_menu_bar_style"
            class "GnomenuMenuBar" style:highest "globalmenu_menu_bar_style"
        """);