Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Export dialog minimum size reduced and tooltip made multiline #1110

Merged
merged 1 commit into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
</Property>
<Property name="alwaysOnTop" type="boolean" value="true"/>
<Property name="minimumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
<Dimension value="[1155, 835]"/>
<Dimension value="[730, 520]"/>
</Property>
<Property name="name" type="java.lang.String" value="exportDialog" noResource="true"/>
<Property name="preferredSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
<Dimension value="[1055, 760]"/>
<Dimension value="[730, 520]"/>
</Property>
</Properties>
<SyntheticProperties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -327,9 +327,9 @@ private void initComponents() {

setTitle(NbBundle.getMessage(ExportDialog.class, "ExportDialog.title_1")); // NOI18N
setAlwaysOnTop(true);
setMinimumSize(new Dimension(1155, 835));
setMinimumSize(new Dimension(730, 520));
setName("exportDialog"); // NOI18N
setPreferredSize(new Dimension(1055, 760));
setPreferredSize(new Dimension(730, 520));

profileSelectLabel.setText(NbBundle.getMessage(ExportDialog.class, "ExportDialog.profileSelectLabel.text_1")); // NOI18N

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,4 @@ ExportDialog.jButtonSetAllColumns.text=Set all columns
ExportDialog.jButtonSetAllColumns.toolTipText=Sets all columns for export
ExportDialog.jLabel2.text=Select an export template:
ExportDialog.jCheckBoxUseTemplate.text=Use export template
ExportDialog.jCheckBoxUseTemplate.toolTipText=If selected, you can choose a template configured in ".droid6/export_templates" folder. If not selected, you can choose columns.
ExportDialog.jCheckBoxUseTemplate.toolTipText=<html>If selected, you can choose a template configured in ".droid6/export_templates" folder.<br> If not selected, you can choose one or more columns.</html>
Loading