From ebc0461fd0eb5565e705a17c3e9d6e7725839a08 Mon Sep 17 00:00:00 2001 From: SiboVG Date: Thu, 30 Jun 2022 17:02:14 +0200 Subject: [PATCH] Update presets info text --- core/resources/l10n/messages.properties | 2 +- .../sf/openrocket/gui/configdialog/RocketComponentConfig.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/resources/l10n/messages.properties b/core/resources/l10n/messages.properties index 0b951c197..49976fcd2 100644 --- a/core/resources/l10n/messages.properties +++ b/core/resources/l10n/messages.properties @@ -2095,7 +2095,7 @@ ComponentPresetChooserDialog.menu.sortDesc = Sort Descending ComponentPresetChooserDialog.menu.units = Units ComponentPresetChooserDialog.checkbox.showAllCompatible = Show all compatible ComponentPresetChooserDialog.checkbox.showLegacyCheckBox = Show Legacy Database -ComponentPresetChooserDialog.lbl.favorites = Select to add preset to drop-down menu +ComponentPresetChooserDialog.lbl.favorites = Check to add preset to the preset drop-down menu in the component edit dialog table.column.Favorite = Favorite table.column.Legacy = Legacy table.column.Manufacturer = Manufacturer diff --git a/swing/src/net/sf/openrocket/gui/configdialog/RocketComponentConfig.java b/swing/src/net/sf/openrocket/gui/configdialog/RocketComponentConfig.java index e380a7303..16e659976 100644 --- a/swing/src/net/sf/openrocket/gui/configdialog/RocketComponentConfig.java +++ b/swing/src/net/sf/openrocket/gui/configdialog/RocketComponentConfig.java @@ -119,7 +119,7 @@ public class RocketComponentConfig extends JPanel { // If the component supports a preset, show the preset selection box. presetModel = new PresetModel(this, document, component); presetComboBox = new JComboBox(presetModel); - presetComboBox.setMaximumRowCount(20); + presetComboBox.setMaximumRowCount(25); presetComboBox.setEditable(false); this.add(presetComboBox);