fix layout

This commit is contained in:
krakjoe 2013-11-29 09:44:25 +00:00
parent 167f6e0c25
commit 921c73aeda
3 changed files with 10 additions and 0 deletions

Binary file not shown.

View File

@ -124,6 +124,14 @@
<Layout class="org.netbeans.modules.form.compat2.layouts.support.JScrollPaneSupportLayout"/>
<SubComponents>
<Component class="phpdbg.ui.JTerminalPane" name="output">
<Properties>
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
<Font name="DialogInput" size="12" style="0"/>
</Property>
<Property name="componentPopupMenu" type="javax.swing.JPopupMenu" editor="org.netbeans.modules.form.ComponentChooserEditor">
<ComponentRef name="stdoutPopupMenu"/>
</Property>
</Properties>
</Component>
</SubComponents>
</Container>

View File

@ -89,6 +89,8 @@ public class JConsole extends javax.swing.JDialog {
});
mainSplit.setLeftComponent(input);
output.setFont(new java.awt.Font("DialogInput", 0, 12)); // NOI18N
output.setComponentPopupMenu(stdoutPopupMenu);
outputScrollPane.setViewportView(output);
mainSplit.setRightComponent(outputScrollPane);