Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-04-01Code cleanup: remove TRUE/FALSE & WITH_BOOL_COMPAT defineCampbell Barton
2014-03-31Code cleanup: use boolCampbell Barton
2013-12-29Fix for 3d text ctrl+arrow keys failing for multi-byte characters.Campbell Barton
2013-05-13fix for building with mingwCampbell Barton
2013-05-12quiet sign conversion warnings and reduce sign conversion for BLI_string, ↵Campbell Barton
and BLF.
2013-05-06fix for cursor jumping error stepping backwards where the the first ↵Campbell Barton
character of a string would be skipped no matter what it was.
2013-02-14misc changesCampbell Barton
- update man page for new additions since last release. - note that --start-console argument is windows only. - correct own assertion in own recent commit.
2013-02-14fix for double clicking in the text editor not working usefully (double ↵Campbell Barton
clicking a pair chars would select 3 - one to the left).
2012-12-10revert most of r52820 (patch to fix [#33452]), this caused a regression in ↵Campbell Barton
text stepping when ctrl is held. This adds back the problem that double-clicking on a single char wont select it. Double click selection may need its own logic.
2012-12-09style cleanupCampbell Barton
2012-12-09patch [#33452] Double click select does not work properly + patchCampbell Barton
from Tobias Johansson (mutze) with some minor edits (don't treat '!' as an operator - python centric)
2012-09-15code cleanup: replace macro for BLI_rect size/center with inline functions.Campbell Barton
2012-04-30Word selection in the Text Editor:Sv. Lockal
* Fix word selection for words with multibyte characters. No need to call txt_move_left() or txt_move_right(), because these functions work with symbols, not bytes * Word selection now treats tabs the same way as spaces. Also useful for words with multibyte characters
2012-03-12text delimiter - convert to unicode before comparing characters.Campbell Barton
2012-03-12style cleanupCampbell Barton
2012-03-09style cleanup: comment blocksCampbell Barton
2012-03-09style cleanup: spelling.Campbell Barton
also remove large, duplicate comments from sunsky.h
2012-03-07edit to cursor adjustment, use int rather then short to store the cursor ↵Campbell Barton
position.
2012-03-07Unify string stepping delimiter code for text buttons, text editor and ↵Campbell Barton
console (all had duplicate code). this is also a step toward the console working with utf8 though many todo's remain.