Changeset 28885 in osm for applications/editors
- Timestamp:
- 2012-11-02T14:37:43+01:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/panels/PanelMain.java
r28164 r28885 20 20 public PanelLights panelLights = null; 21 21 public PanelMore panelMore = null; 22 public PanelNotice panelNotice = null;23 public JScrollPane scrollNotice = null;24 22 public PanelTop panelTop = null; 25 23 public PanelFog panelFog = null; … … 188 186 panelMore.setVisible(false); 189 187 add(panelMore); 190 panelNotice = new PanelNotice(dlg);191 panelNotice.setPreferredSize(new Dimension(340, 300));192 scrollNotice = new JScrollPane(panelNotice, ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS, ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);193 scrollNotice.setBounds(new Rectangle(40, 165, 360, 160));194 scrollNotice.setVisible(false);195 add(scrollNotice);196 188 panelTop = new PanelTop(dlg); 197 189 panelTop.setBounds(new Rectangle(40, 165, 360, 160)); … … 292 284 panelLights.setVisible(false); 293 285 panelMore.setVisible(false); 294 scrollNotice.setVisible(false);295 286 panelTop.setVisible(false); 296 287 panelFog.setVisible(false); … … 318 309 panelHaz.syncPanel(); 319 310 break; 320 case NTC:321 scrollNotice.setVisible(true);322 311 case SPP: 323 312 specButton.setBorderPainted(true);
Note:
See TracChangeset
for help on using the changeset viewer.