Mod Archive Forums Mod Archive Forums
Advanced search  

News:

Please note: Your main modarchive.org account will not work here, you must create a forum account to post on the forums.

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - TiM

Pages: [1]
1
hello again.

i love this tracker so i modify the code and it's work...

it's dirty, but easy to explain in this forum.

so just modify the interface/order_list_editor.cpp near line 221
change :
Code: [Select]
bool OrderListEditor::key(unsigned long p_unicode, unsigned long p_scan_code,bool p_press,bool p_repeat,int p_modifier_mask) {


if (!p_press)
return true;
KeyBindList kbind=KeyBind::get_bind( p_scan_code );

if (kbind==KB_MAX)
return false;

bool capture=false;
with :
Code: [Select]
bool OrderListEditor::key(unsigned long p_unicode, unsigned long p_scan_code,bool p_press,bool p_repeat,int p_modifier_mask) {

if (!p_press)
return true;
KeyBindList kbind=KeyBind::get_bind( p_scan_code );

bool capture=false;

if (p_unicode >= '0' and p_unicode <= '9') {
editor->orderlist_insert_value(p_unicode-'0');
update();
return capture;
}

if (kbind==KB_MAX)
return false;

now, just re-compile it and play !

i'm too lazy to do nice a patch for the moment.

but i hope it will save some users... enjoy !

2
Really good tracker but same problem for me  :(

Pages: [1]