Support and General Use > User Interface and Voice

Hint on changing key or menu mapping

<< < (3/3)

WarpEnterprises:
So far I didn't see anything negative by enabling the hotkey.
It's the DOWN REPEAT button which shows the playlist without hotkey, this function can be assigned to the hotkey anyways (but I assigned it to "delete").
Are there hints what is supposed to NOT "work normally"? Of course I can do some tests, if it helps.

WarpEnterprises:
 :)   :)   :)   :)
Now I am really happy. I found the place where to put a little piece of code, so now each time a file is deleted it's logged to a text file.


--- Code: ---onplay.d, delete_file_dir, before end of function:
int fd = open("/deleted.txt", O_CREAT|O_WRONLY|O_APPEND, 0666);
if (fd >= 0)
{
   fdprintf(fd, "%s\n", file_to_delete);
   close(fd);
}
--- End code ---

Navigation

[0] Message Index

[*] Previous page

Go to full version