Commit Message
Peter,
I've had to recompile jvdr and had to modify it, here are the diff
just in case it's of
interest for you. Im running MacOSX
$ java -version
java version "1.4.2_09"
Java(TM) 2 Runtime Environment, Standard Edition (build
1.4.2_09-232)
Java HotSpot(TM) Client VM (build 1.4.2-54, mixed mode)
+++ dialogs/JVdrDialog.java 2006-02-04 21:37:35.000000000 +0100
@@ -30,7 +30,7 @@
// Close window whe pressing X
setDefaultCloseOperation( JDialog.DISPOSE_ON_CLOSE );
- add(dialogPanel);
+ setContentPane(dialogPanel);
setTitle( dialogPanel.getTitle() );
setModal(true);
El 04/02/2006, a las 17:54, Peter Juszack escribió:
> Hallo,
>
> allthough it seems that JVdr will not work with softdevice at
> least one person out there got it working.
>
> Andre Weidemann sent some improvements so here is a new version.
>
> tar.gz: http://194.95.44.38/~pjuszack/digicam/download/
> jvdr-0.0.2.tar.gz
> zip: http://194.95.44.38/~pjuszack/digicam/download/jvdr-0.0.2.zip
>
> Regards Peter
>
> http://194.95.44.38/~pjuszack/digicam
>
>
>
> _______________________________________________
> vdr mailing list
> vdr@linuxtv.org
> http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
@@ -515,10 +515,10 @@
createMenu();
mainPanel = new JVdrMainPanel();
- add(mainPanel);
+ this.setContentPane(mainPanel);
// calculate window size
- setPreferredSize( new Dimension(800,600));
+ mainPanel.setPreferredSize( new Dimension(800,600));
pack();
setConnected(false);
+0100