Skip to content

Commit 30e3bf1

Browse files
committed
Merge branch 'hotfix/4.1.1'
2 parents f0d5566 + 8869b54 commit 30e3bf1

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ apply plugin: 'kotlin-kapt'
66
apply from: '../versioning.gradle'
77

88
ext {
9-
VERSION_NAME = "4.1.0"
9+
VERSION_NAME = "4.1.1"
1010
}
1111

1212
android {

app/src/main/res/drawable/ic_bookmark_24px.xml renamed to app/src/main/res/drawable/ic_refresh_24px.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@
2020
android:viewportWidth="24.0"
2121
android:viewportHeight="24.0">
2222
<path
23-
android:pathData="M17,3L7,3c-1.1,0 -1.99,0.9 -1.99,2L5,21l7,-3 7,3L19,5c0,-1.1 -0.9,-2 -2,-2zM17,18l-5,-2.18L7,18L7,5h10v13z"
23+
android:pathData="M17.65,6.35C16.2,4.9 14.21,4 12,4c-4.42,0 -7.99,3.58 -7.99,8s3.57,8 7.99,8c3.73,0 6.84,-2.55 7.73,-6h-2.08c-0.82,2.33 -3.04,4 -5.65,4 -3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6c1.66,0 3.14,0.69 4.22,1.78L13,11h7V4l-2.35,2.35z"
2424
android:fillColor="#FFFFFF"/>
2525
</vector>

app/src/main/res/layout/popup_window_browser_menu.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -49,17 +49,17 @@
4949
android:src="@drawable/ic_arrow_forward_24px" />
5050

5151
<ImageButton
52-
android:id="@+id/bookmarksPopupMenuItem"
52+
android:id="@+id/refreshPopupMenuItem"
5353
style="@style/BrowserIconMenuItem"
5454
android:layout_width="wrap_content"
5555
android:layout_height="wrap_content"
5656
android:layout_weight="1"
57-
android:contentDescription="@string/bookmarksMenuTitle"
58-
android:onClick="onBookmarksClicked"
59-
android:src="@drawable/ic_bookmark_24px" />
57+
android:contentDescription="@string/refresh"
58+
android:onClick="onRefreshClicked"
59+
android:src="@drawable/ic_refresh_24px" />
6060

6161
</LinearLayout>
62-
62+
6363
<FrameLayout
6464
android:layout_width="match_parent"
6565
android:layout_height="1dp"
@@ -75,12 +75,12 @@
7575
app:layout_constraintTop_toBottomOf="@id/header">
7676

7777
<TextView
78-
android:id="@+id/refreshPopupMenuItem"
78+
android:id="@+id/bookmarksPopupMenuItem"
7979
style="@style/BrowserTextMenuItem"
8080
android:layout_width="match_parent"
8181
android:layout_height="wrap_content"
82-
android:onClick="onRefreshClicked"
83-
android:text="@string/refresh" />
82+
android:onClick="onBookmarksClicked"
83+
android:text="@string/bookmarksMenuTitle" />
8484

8585
<TextView
8686
android:id="@+id/addBookmarksPopupMenuItem"

0 commit comments

Comments
 (0)