Skip to content

Commit

Permalink
small fix for invert axis menu
Browse files Browse the repository at this point in the history
  • Loading branch information
TinkerGnome committed Jan 4, 2017
1 parent 4e5a38c commit 885fd92
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 11 deletions.
12 changes: 2 additions & 10 deletions Marlin/UltiLCD2_menu_prefs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -837,6 +837,7 @@ void lcd_menu_steps()
static void lcd_store_axisdir()
{
SET_AXIS_DIRECTION(axis_direction);
menu.return_to_previous();
}

static void lcd_axisdir_x()
Expand All @@ -862,7 +863,7 @@ static void lcd_axisdir_e1()
#if EXTRUDERS > 1
static void lcd_axisdir_e2()
{
axis_direction ^= 0x16;
axis_direction ^= 0x10;
}
#endif // EXTRUDERS

Expand Down Expand Up @@ -985,15 +986,6 @@ static void drawAxisDirSubmenu(uint8_t nr, uint8_t &flags)
{
lcd_lib_draw_gfx(9+LCD_CHAR_SPACING*2, 18, INVERT_X_DIR?checkbox_on:checkbox_off);
}


// LCDMenu::drawMenuString_P((LCD_CHAR_MARGIN_LEFT*2)+LCD_CHAR_SPACING
// , 18
// , LCD_CHAR_SPACING*3
// , LCD_CHAR_HEIGHT
// , INVERT_X_DIR ? PSTR("yes") : PSTR("no")
// , ALIGN_RIGHT | ALIGN_VCENTER
// , flags);
}
else if (nr == index++)
{
Expand Down
2 changes: 1 addition & 1 deletion Marlin/package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#############################

##Which version name are we appending to the final archive
export BUILD_NAME=16.12
export BUILD_NAME=16.12.1

#############################
# Actual build script
Expand Down

0 comments on commit 885fd92

Please sign in to comment.