mirror of
https://github.com/arduino/Arduino.git
synced 2024-11-29 10:24:12 +01:00
Made findreplace dialog NOT resizable
This commit is contained in:
parent
97ed162618
commit
3d3fc08993
@ -4,8 +4,9 @@
|
||||
<Properties>
|
||||
<Property name="defaultCloseOperation" type="int" value="2"/>
|
||||
<Property name="title" type="java.lang.String" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
|
||||
<Connection code="_("Find")" type="code"/>
|
||||
<Connection code="tr("Find")" type="code"/>
|
||||
</Property>
|
||||
<Property name="resizable" type="boolean" value="false"/>
|
||||
</Properties>
|
||||
<SyntheticProperties>
|
||||
<SyntheticProperty name="formSizePolicy" type="int" value="1"/>
|
||||
@ -84,7 +85,7 @@
|
||||
<Component class="javax.swing.JLabel" name="findLabel">
|
||||
<Properties>
|
||||
<Property name="text" type="java.lang.String" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
|
||||
<Connection code="_("Find:")" type="code"/>
|
||||
<Connection code="tr("Find:")" type="code"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
<AuxValues>
|
||||
@ -100,7 +101,7 @@
|
||||
<Component class="javax.swing.JLabel" name="replaceLabel">
|
||||
<Properties>
|
||||
<Property name="text" type="java.lang.String" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
|
||||
<Connection code="_("Replace with:")" type="code"/>
|
||||
<Connection code="tr("Replace with:")" type="code"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
<AuxValues>
|
||||
@ -117,7 +118,7 @@
|
||||
<Properties>
|
||||
<Property name="selected" type="boolean" value="true"/>
|
||||
<Property name="text" type="java.lang.String" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
|
||||
<Connection code="_("Ignore Case")" type="code"/>
|
||||
<Connection code="tr("Ignore Case")" type="code"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
</Component>
|
||||
@ -125,14 +126,14 @@
|
||||
<Properties>
|
||||
<Property name="selected" type="boolean" value="true"/>
|
||||
<Property name="text" type="java.lang.String" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
|
||||
<Connection code="_("Wrap Around")" type="code"/>
|
||||
<Connection code="tr("Wrap Around")" type="code"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
</Component>
|
||||
<Component class="javax.swing.JCheckBox" name="searchAllFilesBox">
|
||||
<Properties>
|
||||
<Property name="text" type="java.lang.String" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
|
||||
<Connection code="_("Search all Sketch Tabs")" type="code"/>
|
||||
<Connection code="tr("Search all Sketch Tabs")" type="code"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
</Component>
|
||||
@ -143,7 +144,7 @@
|
||||
<Component class="javax.swing.JButton" name="findButton">
|
||||
<Properties>
|
||||
<Property name="text" type="java.lang.String" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
|
||||
<Connection code="_("Find")" type="code"/>
|
||||
<Connection code="tr("Find")" type="code"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
<Events>
|
||||
@ -153,7 +154,7 @@
|
||||
<Component class="javax.swing.JButton" name="previousButton">
|
||||
<Properties>
|
||||
<Property name="text" type="java.lang.String" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
|
||||
<Connection code="_("Previous")" type="code"/>
|
||||
<Connection code="tr("Previous")" type="code"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
<Events>
|
||||
@ -163,7 +164,7 @@
|
||||
<Component class="javax.swing.JButton" name="replaceFindButton">
|
||||
<Properties>
|
||||
<Property name="text" type="java.lang.String" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
|
||||
<Connection code="_("Replace & Find")" type="code"/>
|
||||
<Connection code="tr("Replace & Find")" type="code"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
<Events>
|
||||
@ -173,7 +174,7 @@
|
||||
<Component class="javax.swing.JButton" name="replaceButton">
|
||||
<Properties>
|
||||
<Property name="text" type="java.lang.String" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
|
||||
<Connection code="_("Replace")" type="code"/>
|
||||
<Connection code="tr("Replace")" type="code"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
<Events>
|
||||
@ -183,7 +184,7 @@
|
||||
<Component class="javax.swing.JButton" name="replaceAllButton">
|
||||
<Properties>
|
||||
<Property name="text" type="java.lang.String" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
|
||||
<Connection code="_("Replace All")" type="code"/>
|
||||
<Connection code="tr("Replace All")" type="code"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
<Events>
|
||||
|
@ -138,6 +138,7 @@ public class FindReplace extends javax.swing.JFrame {
|
||||
|
||||
setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
|
||||
setTitle(tr("Find"));
|
||||
setResizable(false);
|
||||
|
||||
findLabel.setText(tr("Find:"));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user