View Issue Details

IDProjectCategoryView StatusLast Update
0001826JEDI VCL00 JVCL Componentspublic2004-06-03 01:08
ReporteranonymousAssigned Touser72 
PrioritynormalSeveritymajorReproducibilityalways
Status resolvedResolutionfixed 
Product Version 
Target VersionFixed in Version 
Summary0001826: TJvImageDialog is always sized to 150 x 150 pixels
Descriptionin TJvImageDialog.Execute the form's ClientHeight and ClientWidth is set to Image1's Height and Width.

I think the intention is to show the complete bitmap.
Additional InformationFix (just a quick hack):
in TJvImageDialog.Execute replace
      Form.ClientHeight := Image1.Height;
      Form.ClientWidth := Image1.Width;
with
      Form.ClientHeight := FPicture.Height;
      Form.ClientWidth := FPicture.Width;
      Image1.Align := alClient;
TagsNo tags attached.

Activities

user72

2004-06-03 01:08

  ~0004445

Fixed in CVS

Issue History

Date Modified Username Field Change
2004-06-02 05:45 anonymous New Issue
2004-06-03 01:08 user72 Status new => resolved
2004-06-03 01:08 user72 Resolution open => fixed
2004-06-03 01:08 user72 Assigned To => user72
2004-06-03 01:08 user72 Note Added: 0004445