Skip to content

Commit 1399bc3

Browse files
author
Jesse Hoobergs
committed
Added getter and setter of AllDayEventHeight
1 parent cfa1475 commit 1399bc3

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

library/src/main/java/com/alamkanak/weekview/WeekView.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1786,6 +1786,18 @@ public void setVerticalFlingEnabled(boolean enabled) {
17861786
mVerticalFlingEnabled = enabled;
17871787
}
17881788

1789+
/**
1790+
* Get the height of AllDay-events
1791+
* @return Height of AllDay-events
1792+
*/
1793+
public int getAllDayEventHeight(){ return mAllDayEventHeight; }
1794+
1795+
/**
1796+
* Set the height of AllDay-events
1797+
* @param height
1798+
*/
1799+
public void setAllDayEventHeight(int height){ mAllDayEventHeight = height; }
1800+
17891801
/////////////////////////////////////////////////////////////////
17901802
//
17911803
// Functions related to scrolling.

0 commit comments

Comments
 (0)