fix so space opening up in landscape board layout is colored in

user-settable background color rather than white
This commit is contained in:
Eric House 2014-07-18 21:29:29 -07:00
parent 550e637440
commit 0f617d359b
2 changed files with 1 additions and 2 deletions

View file

@ -18,13 +18,13 @@
android:longClickable="true"
android:drawSelectorOnTop="false"
android:layout_gravity="center_vertical|center_horizontal"
android:background="@android:color/transparent"
/>
<LinearLayout android:id="@+id/exchange_buttons"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#FF000000"
>
<Button android:id="@+id/exchange_commit"
android:text="@string/button_trade_commit"

View file

@ -178,7 +178,6 @@ public class BoardCanvas extends Canvas implements DrawCtx {
}
m_boundsScratch.set( 0, 0, bitmap.getWidth(), bitmap.getHeight() );
fillRect( m_boundsScratch, WHITE );
}
public void setJNIThread( JNIThread jniThread )