为什么我的操作的快捷方式不会被执行?
在 Moose 4.6 中,这是我的代码:
finder := GLMFinder new.
finder show: [:a |
a dynamic display: (GLMTextPresentation new forSmalltalk);
act: [self halt]
on: $k
entitled: 'Implementors (k)' ].
finder openOn: 'Waaaaaaa'
如果我单击小菜单项,则会出现一个调试器。但是,如果我按 apple-k,则不会。为什么不呢?
In Moose 4.6, here's my code:
finder := GLMFinder new.
finder show: [:a |
a dynamic display: (GLMTextPresentation new forSmalltalk);
act: [self halt]
on: $k
entitled: 'Implementors (k)' ].
finder openOn: 'Waaaaaaa'
If I click the little menu item, a debugger comes up. But, if I press apple-k, it doesn't. Why doesn't it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来动作在动态演示中效果不佳。但如果您将操作添加到内部演示文稿(在本例中为 GLMTextPresentation),它会完美地工作。
It seems that actions do not work well in the dynamic presentation. But it works flawlessly if you add the action to the inner presentation (in this case to the GLMTextPresentation).