Skip to content

Commit

Permalink
Added setting configured color to button texts for messagebox on Andr…
Browse files Browse the repository at this point in the history
…oid.
  • Loading branch information
philippwiesemann committed Sep 24, 2014
1 parent 53feb22 commit 788a2e4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions android-project/src/org/libsdl/app/SDLActivity.java
Expand Up @@ -741,6 +741,9 @@ public void onClick(View v) {
}
}
button.setText(buttonTexts[i]);
if (textColor != Color.TRANSPARENT) {
button.setTextColor(textColor);
}
if (buttonBorderColor != Color.TRANSPARENT) {
// TODO set color for border of messagebox button
}
Expand Down

0 comments on commit 788a2e4

Please sign in to comment.