lucascanalla / gitso

Automatically exported from code.google.com/p/gitso
0 stars 0 forks source link

VNC-Viewer not scrollable #15

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Both sides (giving support, needs help) are using ubuntu 8.10
   - giving support uses a screen-resolution with 1280x800
   - needs help uses a screen-resolution with 1600x1200
2. connect both

What is the expected output? What do you see instead?
It's impossible to scroll on the screen because on the bottom of the
picture there is black space. The more I scroll down the more the screen
gets black. It's not possible to scroll up again

What version of the product are you using? On what operating system?
gitso 0.5
ubuntu 8.10

Please provide any additional information below.

Original issue reported on code.google.com by schla...@gmail.com on 5 Dec 2008 at 9:23

GoogleCodeExporter commented 8 years ago
Does right-clicking where you'd expect to left-click (to scroll) do the trick.  
I
found this un-intuitive to say the least, but that's just how vncviewer works.  
We've
played around with switching the vnc client that we use, but we haven't come up 
with
anything that is as reliable across the board.

Original comment by gerbe...@gmail.com on 8 Dec 2008 at 4:45

GoogleCodeExporter commented 8 years ago
possibly vinagre if it gets listen support soon!

Original comment by xburn...@gmail.com on 16 Dec 2008 at 7:35

GoogleCodeExporter commented 8 years ago
@gerberad:
Ok, I tried it once more, but the scrolling behavior is really slow and not 
useable. 

I also tried to connect with Vinagre (the normal way) and this program works 
really
fine. But I know, that this one is not cross platform

Original comment by schla...@gmail.com on 17 Dec 2008 at 7:02

GoogleCodeExporter commented 8 years ago
Another option you might try is to switch the viewer to full screen once it's
connected.  You can do this by pressing F8 and selecting "Full screen" once in 
full
screen you can exit by pressing F8 again and selecting the now checked "Full 
screen".
 There are a number of options you can adjust from the F8 menu as well that may
improve your remote control responsiveness, like the encoding and color level 
(under
"Options").

Original comment by jamin.co...@gmail.com on 23 Mar 2009 at 6:00

GoogleCodeExporter commented 8 years ago
I tried the full screen mode, but there is the same problem. I created an 
screenshot,
so you can see me problem

Original comment by schla...@gmail.com on 24 Mar 2009 at 10:36

Attachments:

GoogleCodeExporter commented 8 years ago

Original comment by gerbe...@gmail.com on 17 Aug 2009 at 1:02

GoogleCodeExporter commented 8 years ago
Did you also try the enhanced viewer from here 
http://www.karlrunge.com/x11vnc/ssvnc.html 
as an alternative viewer?

Original comment by steffeng...@yahoo.de on 7 Dec 2009 at 7:33

GoogleCodeExporter commented 8 years ago
I haven't tested it on 0.5, but on the development version (0.6), this is fixed 
by
changing line 39 on /usr/share/gitso/Processes.py from:

self.returnPID = os.spawnlp(os.P_NOWAIT, 'x11vnc',
'x11vnc','-nopw','-ncache','20','-solid','black','-connect','%s' % host)

to

self.returnPID = os.spawnlp(os.P_NOWAIT, 'x11vnc',
'x11vnc','-nopw','-nonc','-solid','black','-connect','%s' % host)

Tested on Nexradix 1.18 (which is based on Ubuntu 9.10).

Original comment by sa...@twistedlincoln.com on 29 Jan 2010 at 4:26

GoogleCodeExporter commented 8 years ago
Thanks. This has been implemented in SVN. But did not make it in the 0.6 
release.

Original comment by gerbe...@gmail.com on 22 Feb 2010 at 4:33