Sdl? What I you talking about. I wrote this week-end that I need to recompile Qt...
So it use Qt...
And the problem of size, I have defined the minimum height to be 400 now (it was 600 before). It still doesn't really fit the screen, because when the window is sized, it just take the screen size (so 800x480), withut taking into acount the height eat by Menu bar and window decoration (like the title bar). I'll try to see if I can fix that, but I'm not sure I want to spend much time in this.
About the right-click crash, as I wrote earlier, I cannot reproduce, so you will have to reproduce and provide me a gdb Backtrace.
So here is how to proceed:
1. download the update version (same
link). This pnd has an unstripped version of telegram (so the pnd weight 160Mb instead of 45Mb!).
2. Using a Codeblocks (latest beta if possible) command line, mount the pnd (without launching it) using:
Code:
/usr/pandora/script/pnd_run -p /PATH/TO/telegram.pnd -m
3. than launch telegram with gdb, and without using the launch script, with
Code:
cd /mnt/utmp/telegram
OPENSSL_armcap=0 QT_XKB_CONFIG_ROOT=/usr/share/X11/xkb HOME=/mnt/utmp/telegram/home LD_LIBRARY_PATH=/mnt/utmp/telegram/lib:$LD_LIBRARY_PATH gdb ./telegram
If you are using SSH, don't forget to add DISPLAY=:0 in front the command line
4. After some seconds, gdb will be ready, so just type
to run it. Than try to reproduce the crash
5. When the segfault occur, nothing will happens on the telegram screen, because it will be in a "frozen" state by gdb. You need to switch to the command line window (if not using an SSH)... On it, you will see that gdb intercepted a SEGFAULT somewhere. Type
to get the BackTrace. I'll need the whole gdb output here.
6. you can quit gdb, with
and unmount the pnd
Code:
cd $OLDPWD
/usr/pandora/script/pnd_run -p /PATH/TO/telegram.pnd -u
That's it...