Skip to content

Commit c89fe1b

Browse files
committed
Release 1.3.1
1 parent cf507d8 commit c89fe1b

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
Change Log
22
==========
33

4+
Version 1.3.1 (2014-10-14)
5+
----------------------------
6+
7+
- UI fix: Remove up arrow indicator margins when using `MaterialMenuIcon` since
8+
you could see some extra space on the left side of the icon.
9+
If a different margin is required, find the 'Home' view of the ActionBar and apply them
10+
(example for stock ActionBar) :
11+
12+
```java
13+
View view = activity.getWindow().getDecorView().findViewById(
14+
resources.getIdentifier("android:id/home", null, null)
15+
);
16+
ViewGroup.MarginLayoutParams params = (ViewGroup.MarginLayoutParams) view.getLayoutParams();
17+
params.leftMargin = someMargin;
18+
```
19+
20+
- `MaterialMenuBase` abstraction improvements
21+
422
Version 1.3.0 (2014-10-12)
523
----------------------------
624

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
VERSION_NAME=1.3.0
2-
VERSION_CODE=10
1+
VERSION_NAME=1.3.1
2+
VERSION_CODE=11
33
GROUP=com.balysv.materialmenu
44

55
POM_NAME=Material Menu

0 commit comments

Comments
 (0)