Subversion Repositories Kolibri OS

Rev

Rev 9640 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9640 Rev 9643
Line 425... Line 425...
425
}
425
}
Line 426... Line 426...
426
 
426
 
427
void EventOpenFile()
427
void EventOpenFile()
428
{
428
{
-
 
429
	switch (tabs.active_tab) {
429
	switch (tabs.active_tab) {
430
		case TAB_SKINS: 
-
 
431
				RunProgram("/sys/skincfg", list.get(select_list.cur_y)); 
-
 
432
				break;
430
		case TAB_SKINS: RunProgram("/sys/skincfg", list.get(select_list.cur_y)); break;
433
		case TAB_WALLPAPERS: 
-
 
434
				RunProgram("/sys/media/kiv", list.get(select_list.cur_y)); 
-
 
435
				break;
-
 
436
		case TAB_SCREENSAVERS: 
-
 
437
				if(select_list.cur_y) {
431
		case TAB_WALLPAPERS: RunProgram("/sys/media/kiv", list.get(select_list.cur_y)); break;
438
					KillProcessByName("@ss", MULTIPLE);
-
 
439
					RunProgram(list.get(select_list.cur_y), "@ss");
432
		case TAB_SCREENSAVERS: if(select_list.cur_y) RunProgram(list.get(select_list.cur_y), "@ss");
440
				}
433
	}
441
	}
Line 434... Line 442...
434
}
442
}
435
 
443