Skip to content

Commit

Permalink
Fix 0.8.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
feelfreelinux committed Apr 30, 2018
1 parent ec808f2 commit 2e2fb24
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ class MainNavigationActivity : BaseActivity(), MainNavigationView, NavigationVie
}

fun checkBlacklist() {
if (!blacklistPreferencesApi.blockedImported && blacklistPreferencesApi.blockedUsers.isEmpty() && blacklistPreferencesApi.blockedTags.isEmpty()) {
if (userManagerApi.isUserAuthorized() && !blacklistPreferencesApi.blockedImported && blacklistPreferencesApi.blockedUsers.isEmpty() && blacklistPreferencesApi.blockedTags.isEmpty()) {
val builder = createAlertBuilder()
builder.setTitle(getString(R.string.blacklist_import_title))
builder.setMessage(getString(R.string.blacklist_import_ask))
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/layout/activity_write_comment.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@
android:paddingTop="@dimen/input_toolbar_text_padding_vertical"
android:paddingBottom="@dimen/input_toolbar_text_padding_vertical"
android:textSize="@dimen/input_toolbar_text_size"
android:inputType="text|textMultiLine|textCapSentences|textAutoCorrect"
android:background="@null"
android:dropDownWidth="wrap_content"
android:inputType="textMultiLine|textCapSentences"/>
android:dropDownWidth="wrap_content" />

</ScrollView>

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/input_toolbar.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
android:maxLines="5"
android:background="@null"
android:dropDownWidth="wrap_content"
android:inputType="textMultiLine|textCapSentences"
android:inputType="text|textMultiLine|textCapSentences|textAutoCorrect"
android:scrollbars="vertical"
app:layout_constraintTop_toBottomOf="@id/separator"
app:layout_constraintLeft_toLeftOf="parent"
Expand Down

0 comments on commit 2e2fb24

Please sign in to comment.