Skip to content

Commit

Permalink
fix: Removed unnecessary label in SettingsActivity and added LogsList…
Browse files Browse the repository at this point in the history
…Activity in the Manifest
  • Loading branch information
Aitorbp committed Sep 19, 2024
1 parent 0267e75 commit 26ada02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions owncloudApp/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,7 @@
android:name=".presentation.settings.privacypolicy.PrivacyPolicyActivity"
android:label="@string/actionbar_privacy_policy" />
<activity
android:name=".presentation.settings.SettingsActivity"
android:label="@string/actionbar_settings"/>
android:name=".presentation.settings.SettingsActivity"/>

<activity android:name=".presentation.migration.StorageMigrationActivity" />
<activity
Expand Down Expand Up @@ -191,6 +190,7 @@
android:theme="@style/Theme.ownCloud" />
<activity
android:name=".presentation.logging.LogsListActivity"
android:label="@string/prefs_log_open_logs_list_view"
android:configChanges="orientation|screenSize" />
<activity android:name=".ui.errorhandling.ErrorShowActivity" />
<activity
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ class LogsListActivity : AppCompatActivity() {
findViewById<ConstraintLayout>(R.id.root_toolbar).isVisible = false
setSupportActionBar(toolbar)
supportActionBar?.apply {
setTitle(R.string.prefs_log_open_logs_list_view)
setDisplayHomeAsUpEnabled(true)
}
}
Expand Down

0 comments on commit 26ada02

Please sign in to comment.