[haiku-commits] r35039 - haiku/trunk/src/add-ons/translators/tga

  • From: host.haiku@xxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Tue, 12 Jan 2010 23:15:23 +0100 (CET)

Author: julun
Date: 2010-01-12 23:15:23 +0100 (Tue, 12 Jan 2010)
New Revision: 35039
Changeset: http://dev.haiku-os.org/changeset/35039/haiku
Ticket: http://dev.haiku-os.org/ticket/5204

Modified:
   haiku/trunk/src/add-ons/translators/tga/TGAView.cpp
Log:
* Fixes ticket #5204.


Modified: haiku/trunk/src/add-ons/translators/tga/TGAView.cpp
===================================================================
--- haiku/trunk/src/add-ons/translators/tga/TGAView.cpp 2010-01-12 22:12:48 UTC 
(rev 35038)
+++ haiku/trunk/src/add-ons/translators/tga/TGAView.cpp 2010-01-12 22:15:23 UTC 
(rev 35039)
@@ -52,6 +52,7 @@
        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 @@
        fpchkRLE->SetValue(val);
        fpchkRLE->SetViewColor(ViewColor());
        AddChild(fpchkRLE);
+       fpchkRLE->ResizeToPreferred();
 }
 
 


Other related posts:

  • » [haiku-commits] r35039 - haiku/trunk/src/add-ons/translators/tga - host . haiku