View | Details | Raw Unified | Return to issue 18748
Collapse All | Expand All

(-)sc/source/ui/app/inputhdl.cxx (-2 / +2 lines)
Lines 2595-2601 BOOL ScInputHandler::KeyInput( const Key Link Here
2595
	//	Alt-Return wird gebraucht, alle anderen Alt's und Ctrl-Tab nicht:
2598
	//	Alt-Return wird gebraucht, alle anderen Alt's und Ctrl-Tab nicht:
2596
#ifndef MAC
2599
#ifndef MAC
2597
	if (( bAlt && !bControl && nCode != KEY_RETURN ) ||
2600
	if (( bAlt && !bControl && nCode != KEY_RETURN ) ||
2598
			( bControl && aCode.GetCode() == KEY_TAB ))
2601
			( !bControl && aCode.GetCode() == KEY_TAB ))
2599
		return FALSE;
2602
		return FALSE;
2600
#endif
2603
#endif
2601
	//	auf'm Mac nicht, sonst werden druckbare Zeichen unterdrueckt
2604
	//	auf'm Mac nicht, sonst werden druckbare Zeichen unterdrueckt
Lines 2637-2643 BOOL ScInputHandler::KeyInput( const Key Link Here
2637
			}
2640
			}
2638
			break;
2641
			break;
2639
		case KEY_TAB:
2642
		case KEY_TAB:
2640
			if (!bControl && !bAlt)
2643
			if (bControl && !bAlt)
2641
			{
2644
			{
2642
				if ( pFormulaData && nTipVisible && nAutoPos != SCPOS_INVALID )
2645
				if ( pFormulaData && nTipVisible && nAutoPos != SCPOS_INVALID )
2643
				{
2646
				{

Return to issue 18748