我似乎无法获得一个工具提示来坚持菜单按钮。这是一个错误吗?
var menu = new qx.ui.menu.Menu();
var undoButton = new qx.ui.menu.Button("Undo", "icon/16/actions/edit-undo.png", this.__undoCommand);
var tooltip = new qx.ui.tooltip.ToolTip("test", null);
undoButton.setToolTip(tooltip);
答案 0 :(得分:2)
默认情况下,qx.ui.menu.Button会隐藏工具提示。尝试
undoButton.setBlockToolTip(false);