when saving a buffer from xclipboard, the dialog window is too short to display the buttons to confirm or cancel the action. Resizing the window does not help. This seems to be the positioning of those buttons. --- Begin /etc/X11/xinit/xserverrc (modified conffile) #!/bin/sh exec /usr/bin/X11/X -dpi 75--- End /etc/X11/xinit/xserverrc
This is fixable from the resources, as a workaround one can add this to her/his local .Xresources ================================================== XClipboard*fileDialog.label.top: ChainTop XClipboard*fileDialog.label.bottom: ChainTop XClipboard*fileDialog.label.left: ChainLeft XClipboard*fileDialog.label.right: ChainLeft XClipboard*fileDialog.value.top: ChainTop XClipboard*fileDialog.value.bottom: ChainTop XClipboard*fileDialog.value.left: ChainLeft XClipboard*fileDialog.value.right: ChainLeft XClipboard*fileDialog.accept.top: ChainTop XClipboard*fileDialog.accept.bottom: ChainBottom XClipboard*fileDialog.accept.left: ChainLeft XClipboard*fileDialog.accept.right: ChainLeft XClipboard*fileDialog.cancel.top: ChainTop XClipboard*fileDialog.cancel.bottom: ChainBottom XClipboard*fileDialog.cancel.left: ChainLeft XClipboard*fileDialog.cancel.right: ChainLeft =================================================== A patch suitable for the package maintainer is attached. Please, forward upstream if appropriate.