mirror of
https://github.com/YTVanced/VancedMicroG
synced 2024-11-14 15:05:06 +00:00
commit
3c0af9772f
3 changed files with 7 additions and 2 deletions
|
@ -44,9 +44,14 @@ android {
|
||||||
compileOptions {
|
compileOptions {
|
||||||
sourceCompatibility JavaVersion.VERSION_1_6
|
sourceCompatibility JavaVersion.VERSION_1_6
|
||||||
}
|
}
|
||||||
|
lintOptions {
|
||||||
|
// TODO: Remove MissingTranslation once we have stable strings and proper translations.
|
||||||
|
disable 'MissingTranslation'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile 'com.android.support:support-v4:23.1.1'
|
compile 'com.android.support:support-v4:23.1.1'
|
||||||
compile 'com.android.support:appcompat-v7:23.1.1'
|
compile 'com.android.support:appcompat-v7:23.1.1'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -136,7 +136,7 @@ public abstract class PreferenceFragment extends Fragment {
|
||||||
@Override
|
@Override
|
||||||
public void onActivityCreated(Bundle savedInstanceState) {
|
public void onActivityCreated(Bundle savedInstanceState) {
|
||||||
super.onActivityCreated(savedInstanceState);
|
super.onActivityCreated(savedInstanceState);
|
||||||
getListView().setScrollBarStyle(0);
|
getListView().setScrollBarStyle(View.SCROLLBARS_INSIDE_OVERLAY);
|
||||||
if (mHavePrefs) {
|
if (mHavePrefs) {
|
||||||
bindPreferences();
|
bindPreferences();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue