mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-05-19 20:29:02 +00:00
fix minor bugs
This commit is contained in:
parent
9781266989
commit
12325641cc
3 changed files with 4 additions and 2 deletions
|
|
@ -2,7 +2,7 @@
|
|||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
package="com.habitrpg.android.habitica"
|
||||
android:versionCode="1938"
|
||||
android:versionCode="1940"
|
||||
android:versionName="1.2.1"
|
||||
android:screenOrientation="portrait"
|
||||
android:installLocation="auto" >
|
||||
|
|
|
|||
|
|
@ -118,4 +118,6 @@
|
|||
<dimen name="reward_width">84dp</dimen>
|
||||
<dimen name="task_min_height">60dp</dimen>
|
||||
<dimen name="snackbar_image_size">46dp</dimen>
|
||||
<dimen name="setup_vertical_spacing">28dp</dimen>
|
||||
<dimen name="content_inset">21dp</dimen>
|
||||
</resources>
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ public class EquipmentOverviewFragment extends BaseMainFragment {
|
|||
super.onCreateView(inflater, container, savedInstanceState);
|
||||
View v = inflater.inflate(R.layout.fragment_equipment_overview, container, false);
|
||||
|
||||
if (this.user == null || this.user.isManaged()) {
|
||||
if (this.user == null || !this.user.isManaged()) {
|
||||
return v;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue