mirror of
http://galexander.org/git/simplesshd.git
synced 2025-01-14 17:10:55 +00:00
specify the foreground color, because that was the only thing causing
trouble when running on the optimus v (the log display was black on black). NB - this will probably fix the SDK 26 theme problem too!
This commit is contained in:
parent
932508f702
commit
f1c8faad21
@ -171,7 +171,8 @@ harmless.
|
||||
|
||||
<ul>
|
||||
<li> <b>2018/05/19 Version 19:</b> Use the app-private directory by
|
||||
default on new installs for the SSH/home dir. Organize settings.
|
||||
default on new installs for the SSH/home dir. Organize settings. Fix
|
||||
black-on-black text on some devices.
|
||||
<li> <b>2018/05/16 Version 18:</b> Use correct idiom for <tt>su</tt> as a
|
||||
login shell (so busybox <tt>su</tt> can work). Add environment variables
|
||||
to settings.
|
||||
|
@ -9,6 +9,7 @@
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:typeface="monospace"
|
||||
android:background="#ff112266"
|
||||
android:textColor="#ffffffff"
|
||||
android:text="IP: XXX" />
|
||||
<EditText android:id="@+id/log"
|
||||
android:layout_width="fill_parent"
|
||||
@ -20,7 +21,8 @@
|
||||
android:typeface="monospace"
|
||||
android:gravity="top"
|
||||
android:singleLine="false"
|
||||
android:background="#00000000" />
|
||||
android:background="#00000000"
|
||||
android:textColor="#ffffffff" />
|
||||
<Button android:id="@+id/startstop"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
|
Loading…
Reference in New Issue
Block a user