lumica89 / prs-plus

Automatically exported from code.google.com/p/prs-plus
0 stars 0 forks source link

(prs 505) set next page on keybinding for any key it doesn't run on menus #350

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Your model / PRS+ version?
prs 505 / default repositoy

What steps will reproduce the problem?
1.Set next page on keybinding for any key (all moment or only on menus)
2.Press the key selected
3.It doesn't run

What is the expected output? What do you see instead?
When the key was pressed the action next page should pass to the next page (on 
menus), during reading works ok.

Original issue reported on code.google.com by VICTOR...@gmail.com on 15 Oct 2012 at 3:04

GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
The action next and previous page on prs 505 ask if is book enabled, on models 
x50 the action executes next or previous page directly.

prs 505
                                name: "NextPage",
                                title: L("ACTION_NEXT_PAGE"),
                                group: "Book",
                                icon: "NEXT_PAGE",
                                action: function () {
                                        if (isBookEnabled()) {
                                                book.doNext();
                                        } else {
                                                model.doBlink();
                                        }
                                }
                        },
                        {
                                name: "PreviousPage",
                                title: L("ACTION_PREVIOUS_PAGE"),
                                group: "Book",
                                icon: "PREVIOUS_PAGE",
                                action: function () {
                                        if (isBookEnabled()) {
                                                book.doPrevious();
                                        } else {
                                                model.doBlink();

x50 models

                                name: "NextPage",
                                title: L("ACTION_NEXT_PAGE"),
                                group: "Book",
                                icon: "NEXT_PAGE",
                                bubble: "doNext",
                                action: doBubbleFunc                            
                        },
                        {
                                name: "PreviousPage",
                                title: L("ACTION_PREVIOUS_PAGE"),
                                group: "Book",
                                icon: "PREVIOUS_PAGE",
                                bubble: "doPrevious",
                                action: doBubbleFunc

Original comment by VICTOR...@gmail.com on 15 Oct 2012 at 3:32