能否从 Linux 中的 Eclipse RCP 初始屏幕中删除调整手柄大小?
在 Linux 中,Eclipse 初始屏幕和 RCP 应用程序的初始屏幕在右下角有一个调整大小的手柄,看起来有点丑陋且无用(因为它们当然是不可调整大小的)。可以采取任何措施(在飞溅处理程序中或其他方式)来删除它吗?
In Linux, Eclipse splash screen and splash screens of RCP applications have a resizing grip in bottom-right corner, which looks a bit ugly and useless (since they are, of course, non-resizable). Can anything be done (in the splash handler or otherwise) to remove it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有两个选项:
调整大小夹点由窗口管理器添加。我的猜测是 Eclipse 启动器没有指定窗口不可调整大小,因此默认情况下 WM 使其可调整大小
调整大小手柄是由工具包(本例中为 GTK)添加的,可能是因为 Eclipse 启动器没有请求不可调整大小的窗口。
在这两种情况下,请在 Eclipse 启动器上提交错误报告 - 除非您想使用自己的修复程序重新编译它。
There are two options:
The resizing grip is added by the window manager. My guess is that the Eclipse launcher didn't specify that the window is non-resizable, so by default the WM makes it resizable
The resizing grip is added by the toolkit (GTK in this case), probably because the Eclipse launcher didn't request a non-resizable window.
In both cases, file a bug report on the eclipse launcher - unless you want to recompile it with your own fix.