Hi, 'have a little problem! If I start following programm ('javac test.java'; 'java test') it kills my xserver (tested under kde and gnome): import javax.swing.*; public class test { private static void createAndShowGUI() { JFrame.setDefaultLookAndFeelDecorated(true); JFrame frame = new JFrame("HelloWorldSwing"); frame.setVisible(true); } public static void main(String[] args) { javax.swing.SwingUtilities.invokeLater(new Runnable() { public void run() { createAndShowGUI(); } }); } } use suse 9.1pro with newest xfree packages Is it a problem of xfree or java? Thanks
I have had this problem. In fact doing even xfontsel and selecting *some* of the fonts killed xserver. the work around is to comment a line that says #Load "freetype" in your XF86Config-4 Now, java should not kill the X server. Let me know if you this works for you. Or, you find a better work-around then this. Osho On Tue, 28 Sep 2004 10:28:30 +0200, 24530824 <mymailinlist@gmx.de> wrote:
Hi,
'have a little problem! If I start following programm ('javac test.java'; 'java test') it kills my xserver (tested under kde and gnome):
import javax.swing.*; public class test { private static void createAndShowGUI() { JFrame.setDefaultLookAndFeelDecorated(true); JFrame frame = new JFrame("HelloWorldSwing"); frame.setVisible(true); } public static void main(String[] args) { javax.swing.SwingUtilities.invokeLater(new Runnable() { public void run() { createAndShowGUI(); } }); } }
use suse 9.1pro with newest xfree packages Is it a problem of xfree or java? Thanks
-- To unsubscribe check the List-Unsubscribe header For additional commands, email: suse-xfree86-help@suse.com
participants (2)
-
24530824
-
Osho GG