mirror of
https://github.com/gsantner/dandelion
synced 2024-11-24 13:22:08 +01:00
Auto reformat code
This commit is contained in:
parent
fb8eb60974
commit
24571f6921
5 changed files with 13 additions and 16 deletions
|
@ -565,12 +565,10 @@ public class MainActivity extends ThemedActivity
|
|||
} else if ("sc_activities".equals(action)) {
|
||||
openDiasporaUrl(urls.getActivityUrl());
|
||||
return;
|
||||
}
|
||||
else if ("sc_contacts".equals(action)) {
|
||||
} else if ("sc_contacts".equals(action)) {
|
||||
onNavigationItemSelected(navView.getMenu().findItem(R.id.nav_aspects));
|
||||
return;
|
||||
}
|
||||
else if ("sc_tags".equals(action)) {
|
||||
} else if ("sc_tags".equals(action)) {
|
||||
onNavigationItemSelected(navView.getMenu().findItem(R.id.nav_followed_tags));
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -451,6 +451,7 @@ public class AppSettings extends SharedPreferencesPropertyBackend {
|
|||
public boolean isAmoledColorMode() {
|
||||
return getBool(R.string.pref_key__primary_color__amoled_mode, false);
|
||||
}
|
||||
|
||||
public void setAmoledColorMode(boolean enable) {
|
||||
setBool(R.string.pref_key__primary_color__amoled_mode, enable);
|
||||
}
|
||||
|
|
|
@ -21,6 +21,7 @@ package com.github.dfa.diaspora_android.web;
|
|||
import android.content.Context;
|
||||
import android.content.MutableContextWrapper;
|
||||
import android.os.Bundle;
|
||||
import android.support.v4.widget.SwipeRefreshLayout;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.webkit.WebSettings;
|
||||
|
@ -33,7 +34,6 @@ import com.github.dfa.diaspora_android.ui.theme.ThemeHelper;
|
|||
import com.github.dfa.diaspora_android.ui.theme.ThemedFragment;
|
||||
import com.github.dfa.diaspora_android.util.AppLog;
|
||||
import com.github.dfa.diaspora_android.util.AppSettings;
|
||||
import android.support.v4.widget.SwipeRefreshLayout;//pull to refresh
|
||||
|
||||
/**
|
||||
* Fragment with a webView and a ProgressBar.
|
||||
|
@ -99,7 +99,6 @@ public class BrowserFragment extends ThemedFragment {
|
|||
swipe.setOnRefreshListener(() -> reloadUrl());
|
||||
if (appSettings.isSwipeRefreshEnabled()) {
|
||||
swipe.setEnabled(true);
|
||||
|
||||
} else {
|
||||
swipe.setRefreshing(false);
|
||||
swipe.setEnabled(false);
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
package com.github.dfa.diaspora_android.web;
|
||||
|
||||
import android.annotation.TargetApi;
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.net.Uri;
|
||||
import android.os.Build;
|
||||
|
|
Loading…
Reference in a new issue