diff --git a/src/add-ons/translators/tga/TGAView.cpp b/src/add-ons/translators/tga/TGAView.cpp index 07794f1520..6316ed894e 100644 --- a/src/add-ons/translators/tga/TGAView.cpp +++ b/src/add-ons/translators/tga/TGAView.cpp @@ -52,6 +52,7 @@ TGAView::TGAView(const BRect& frame, const char* name, uint32 resize, fpchkIgnoreAlpha->SetValue(val); fpchkIgnoreAlpha->SetViewColor(ViewColor()); AddChild(fpchkIgnoreAlpha); + fpchkIgnoreAlpha->ResizeToPreferred(); fpchkRLE = new BCheckBox(BRect(10, 67, 180, 84), "Save with RLE Compression", "Save with RLE Compression", @@ -60,6 +61,7 @@ TGAView::TGAView(const BRect& frame, const char* name, uint32 resize, fpchkRLE->SetValue(val); fpchkRLE->SetViewColor(ViewColor()); AddChild(fpchkRLE); + fpchkRLE->ResizeToPreferred(); }