This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 181926
Collapse All | Expand All

(-)tasklist.ui/src/org/netbeans/modules/tasklist/filter/KeywordsPanel.form (-6 / +5 lines)
Lines 1-4 Link Here
1
<?xml version="1.0" encoding="UTF-8" ?>
1
<?xml version="1.1" encoding="UTF-8" ?>
2
2
3
<Form version="1.3" maxVersion="1.3" type="org.netbeans.modules.form.forminfo.JPanelFormInfo">
3
<Form version="1.3" maxVersion="1.3" type="org.netbeans.modules.form.forminfo.JPanelFormInfo">
4
  <NonVisualComponents>
4
  <NonVisualComponents>
Lines 30-41 Link Here
30
                      <Component id="fewerButton" min="-2" max="-2" attributes="0"/>
30
                      <Component id="fewerButton" min="-2" max="-2" attributes="0"/>
31
                  </Group>
31
                  </Group>
32
                  <Group type="102" alignment="0" attributes="0">
32
                  <Group type="102" alignment="0" attributes="0">
33
                      <Component id="matchAllRadio" pref="149" max="32767" attributes="0"/>
33
                      <Component id="matchAllRadio" min="-2" max="-2" attributes="0"/>
34
                      <EmptySpace min="-2" max="-2" attributes="0"/>
34
                      <EmptySpace min="-2" max="-2" attributes="0"/>
35
                      <Component id="matchAnyRadio" pref="157" max="32767" attributes="0"/>
35
                      <Component id="matchAnyRadio" min="-2" max="-2" attributes="0"/>
36
                      <EmptySpace min="-2" pref="278" max="-2" attributes="0"/>
37
                  </Group>
36
                  </Group>
38
                  <Component id="conditionsScrollPane" alignment="1" pref="584" max="32767" attributes="0"/>
37
                  <Component id="conditionsScrollPane" alignment="1" pref="596" max="32767" attributes="0"/>
39
              </Group>
38
              </Group>
40
              <EmptySpace min="-2" max="-2" attributes="0"/>
39
              <EmptySpace min="-2" max="-2" attributes="0"/>
41
          </Group>
40
          </Group>
Lines 49-55 Link Here
49
                  <Component id="matchAllRadio" alignment="3" min="-2" max="-2" attributes="0"/>
48
                  <Component id="matchAllRadio" alignment="3" min="-2" max="-2" attributes="0"/>
50
                  <Component id="matchAnyRadio" alignment="3" min="-2" max="-2" attributes="0"/>
49
                  <Component id="matchAnyRadio" alignment="3" min="-2" max="-2" attributes="0"/>
51
              </Group>
50
              </Group>
52
              <EmptySpace max="-2" attributes="0"/>
51
              <EmptySpace min="-2" max="-2" attributes="0"/>
53
              <Component id="conditionsScrollPane" pref="321" max="32767" attributes="0"/>
52
              <Component id="conditionsScrollPane" pref="321" max="32767" attributes="0"/>
54
              <EmptySpace max="-2" attributes="0"/>
53
              <EmptySpace max="-2" attributes="0"/>
55
              <Group type="103" groupAlignment="1" attributes="0">
54
              <Group type="103" groupAlignment="1" attributes="0">
(-)tasklist.ui/src/org/netbeans/modules/tasklist/filter/KeywordsPanel.java (-5 / +5 lines)
Lines 1-7 Link Here
1
/*
1
/*
2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3
 *
3
 *
4
 * Copyright 1997-2009 Sun Microsystems, Inc. All rights reserved.
4
 * Copyright 1997-2010 Sun Microsystems, Inc. All rights reserved.
5
 *
5
 *
6
 * The contents of this file are subject to the terms of either the GNU
6
 * The contents of this file are subject to the terms of either the GNU
7
 * General Public License Version 2 only ("GPL") or the Common
7
 * General Public License Version 2 only ("GPL") or the Common
Lines 204-214 Link Here
204
                        .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
204
                        .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
205
                        .addComponent(fewerButton))
205
                        .addComponent(fewerButton))
206
                    .addGroup(layout.createSequentialGroup()
206
                    .addGroup(layout.createSequentialGroup()
207
                        .addComponent(matchAllRadio, javax.swing.GroupLayout.PREFERRED_SIZE, 149, Short.MAX_VALUE)
207
                  .addComponent(matchAllRadio)
208
                        .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
208
                        .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
209
                        .addComponent(matchAnyRadio, javax.swing.GroupLayout.PREFERRED_SIZE, 157, Short.MAX_VALUE)
209
                  .addComponent(matchAnyRadio)
210
                        .addGap(278, 278, 278))
210
                  .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED))
211
                    .addComponent(conditionsScrollPane, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, 584, Short.MAX_VALUE))
211
               .addComponent(conditionsScrollPane, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, 596, Short.MAX_VALUE))
212
                .addContainerGap())
212
                .addContainerGap())
213
        );
213
        );
214
        layout.setVerticalGroup(
214
        layout.setVerticalGroup(

Return to bug 181926