Joan Torres
543e26d9be
* Default installation of native viewer can once again handle VncAuth * Graphic acceleration now can now be disabled through the vncserver config file the same way as other features * Command vncpasswd can again correctly update passwords * Native viewer once again consider passwd file that contain more than one password valid * Native viewer can once again connect to RealVNC servers * Users of x0vncserver should no longer experience the mouse cursor moving to the upper left corner * H264 encoding no longer causes crashing - Removed patches (no longer needed): * u_tigervnc-Change-button-layout-in-ServerDialog.patch - Refreshed patches: * n_tigervnc-Date-time.patch * n_tigervnc-Dont-sign-java-client.patch * n_tigervnc-reproducible-jar-mtime.patch * u_tigervnc-Add-autoaccept-parameter.patch * u_tigervnc-Build-libXvnc-as-separate-library.patch * u_tigervnc-Ignore-epipe-on-write.patch - Fix path on vncviewer desktop file. Use %use_update_alternative OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/tigervnc?expand=0&rev=268
33 lines
1.0 KiB
Diff
33 lines
1.0 KiB
Diff
Patch-mainline: To be upstreamed
|
|
References: bnc#1084865
|
|
Author: Michal Srb <msrb@suse.com>
|
|
Subject: Change button layout in ServerDialog.
|
|
|
|
To fit strings in languages with longer words...
|
|
---
|
|
vncviewer/ServerDialog.cxx | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
Index: tigervnc-1.13.0/vncviewer/ServerDialog.cxx
|
|
===================================================================
|
|
--- tigervnc-1.13.0.orig/vncviewer/ServerDialog.cxx
|
|
+++ tigervnc-1.13.0/vncviewer/ServerDialog.cxx
|
|
@@ -70,7 +70,7 @@ ServerDialog::ServerDialog()
|
|
serverName = new Fl_Input_Choice(x, y, w() - margin*2 - server_label_width, INPUT_HEIGHT, _("VNC server:"));
|
|
usedDir = NULL;
|
|
|
|
- int adjust = (w() - 20) / 4;
|
|
+ int adjust = (w() - 20) / 3;
|
|
int button_width = adjust - margin/2;
|
|
|
|
x = margin;
|
|
@@ -93,6 +93,8 @@ ServerDialog::ServerDialog()
|
|
|
|
x = 0;
|
|
y += margin/2 + BUTTON_HEIGHT;
|
|
+ adjust = (w() - 20) / 4;
|
|
+ button_width = adjust - margin/2;
|
|
|
|
divider = new Fl_Box(x, y, w(), 2);
|
|
divider->box(FL_THIN_DOWN_FRAME);
|