﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
6141	Indent plugin: outdenting list with indentOffset=0 doesn't work	Arne	Sa'ar Zac Elias	"1. Configure indentOffset in list plugin to 0[[BR]]
2. Create a list with two items[[BR]]
3. Indent the second item.[[BR]]
4. Outdent the second item.[[BR]]

Suggested fix: 
Modify the following lines in the '''indentElement''' function in the list plugin:

{{{
if ( currentOffset < 0 )
   return false;

}}}
To : [[BR]]
{{{
if ( currentOffset <= 0 )
   return false;

}}}
"	Bug	closed	Normal	CKEditor 3.4.2	Core : Lists		fixed		
