hi
does someone tried to print from IDEA, i have noticed that
for some reason, don't know why, the printout doesn't look like
the editor view, don't know how you guys implemented it, but
could it be that u use another renderer fpr the print like the editor?
for ex. if i print the following text the print out looks like this:
org. text:
public class SocketTest extends JFrame
{
   private JTextField field;
   public SocketTest()
   {
       super("SocketTest");
       setSize(400, 350);
       setResizable(false);
       addWindowListener(new WindowAdapter()
       {
           public void windowClosing(WindowEvent we)
           {
               ....
           }
       });

printout:
public class SocketTest extends JFrame
{
   private JTextField field;
   public SocketTest()
   {
       super("SocketTest");
       setSize(400, 350);
       setResizable(false);
   addWindowListener(new WindowAdapter()
   {
           public void windowClosing(WindowEvent we)
           {
               ....
           }
      });

will this be fixed in the next build versions?
greetz, ercano

_______________________________________________
Eap-list mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-list

Reply via email to