Skip to content

Commit

Permalink
New Trust dialog opens a little too small (#50)
Browse files Browse the repository at this point in the history
Make the first table a little taller.

#48
  • Loading branch information
merks authored Apr 23, 2022
1 parent 50cbeb3 commit 1a4855e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bundles/org.eclipse.equinox.p2.ui/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %bundleName
Bundle-SymbolicName: org.eclipse.equinox.p2.ui;singleton:=true
Bundle-Version: 2.7.400.qualifier
Bundle-Version: 2.7.500.qualifier
Bundle-Activator: org.eclipse.equinox.internal.p2.ui.ProvUIActivator
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ private void createCertificateViewerArea(Composite composite) {
certifcateViewer.setContentProvider(new TreeNodeContentProvider());

GridData data = new GridData(GridData.FILL_BOTH);
data.heightHint = convertHeightInCharsToPixels(Math.min(artifactMap.keySet().size() + 1, 6)) * 3 / 2;
data.heightHint = convertHeightInCharsToPixels(Math.min(artifactMap.keySet().size() + 2, 6)) * 3 / 2;
data.widthHint = convertWidthInCharsToPixels(120);
tableComposite.setLayoutData(data);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ TrustCertificateDialog_Title=Trust
TrustCertificateDialog_Message=Do you trust these signers?
TrustCertificateDialog_MessageUnsigned=\u26A0\uFE0F\u00A0Do you trust unsigned content of unknown origin?
TrustCertificateDialog_MessageNameWarning=\u26A0\uFE0F\u00A0The displayed originator names are not necessarily a reliable certification of origin.
TrustCertificateDialog_MessagePGP=For PG keys, verification is typically achieved by querying the key\'s fingerprint against a trusted key server.
TrustCertificateDialog_MessagePGP=For PGP keys, verification is typically achieved by querying the key\'s fingerprint against a trusted key server.
TrustCertificateDialog_AcceptSelectedButtonLabel=&Trust Selected
TrustCertificateDialog_AlwaysTrust=Always trust all content
TrustCertificateDialog_AlwaysTrustConfirmationMessage=Are you certain you wish to accept all content, including unsigned content of unknown origin, with no further confirmation now and for all future operations?\n\n\
Expand Down

0 comments on commit 1a4855e

Please sign in to comment.