aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--src/Slit.cc2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index bf7d664..b2c2b13 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
1 (Format: Year/Month/Day) 1 (Format: Year/Month/Day)
2Changes for 1.0.0: 2Changes for 1.0.0:
3*07/04/20:
4 * Fix slit.onhead with BOTTOMLEFT placement.(Thanks Tomas Janousek <tomi@nomi.cz>)
5 Slit.cc
3*07/04/19: 6*07/04/19:
4 * Fixed crash when CustomMenu command doesn't point to a file (Mark) 7 * Fixed crash when CustomMenu command doesn't point to a file (Mark)
5 FbCommands.cc 8 FbCommands.cc
diff --git a/src/Slit.cc b/src/Slit.cc
index 564523a..fbab1e6 100644
--- a/src/Slit.cc
+++ b/src/Slit.cc
@@ -847,7 +847,7 @@ void Slit::reposition() {
847 847
848 case BOTTOMLEFT: 848 case BOTTOMLEFT:
849 frame.x = head_x; 849 frame.x = head_x;
850 frame.y = head_h - frame.height - border_width*2; 850 frame.y = head_y + head_h - frame.height - border_width*2;
851 if (direction() == VERTICAL) { 851 if (direction() == VERTICAL) {
852 frame.x_hidden = head_x + bevel_width - 852 frame.x_hidden = head_x + bevel_width -
853 border_width - frame.width; 853 border_width - frame.width;