|
@@ -2678,9 +2678,19 @@ void BildZ::render( Bild & zRObj ) // zeichnet nach zRObj
|
|
if( !( vertikalScrollBar && hatStyle( Style::VScroll ) ) && !( horizontalScrollBar && hatStyle( Style::HScroll ) ) )
|
|
if( !( vertikalScrollBar && hatStyle( Style::VScroll ) ) && !( horizontalScrollBar && hatStyle( Style::HScroll ) ) )
|
|
{
|
|
{
|
|
if( hatStyle( Style::Alpha ) )
|
|
if( hatStyle( Style::Alpha ) )
|
|
- zRObj.alphaBild( x, y, br, hi, *bild );
|
|
|
|
|
|
+ {
|
|
|
|
+ if( hatStyle( Style::Skalliert ) )
|
|
|
|
+ zRObj.alphaBildSkall( x, y, br, hi, *bild );
|
|
|
|
+ else
|
|
|
|
+ zRObj.alphaBild( x, y, br, hi, *bild );
|
|
|
|
+ }
|
|
else
|
|
else
|
|
- zRObj.drawBild( x, y, br, hi, *bild );
|
|
|
|
|
|
+ {
|
|
|
|
+ if( hatStyle( Style::Skalliert ) )
|
|
|
|
+ zRObj.drawBildSkall( x, y, br, hi, *bild );
|
|
|
|
+ else
|
|
|
|
+ zRObj.drawBild( x, y, br, hi, *bild );
|
|
|
|
+ }
|
|
}
|
|
}
|
|
else
|
|
else
|
|
{
|
|
{
|