Bug 48487

Summary: Alt left and right keys do not change view
Product: quanta Reporter: metrol
Component: generalAssignee: András Manţia <amantia>
Status: RESOLVED WORKSFORME    
Severity: normal    
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: Compiled Sources   
OS: FreeBSD   
Latest Commit: Version Fixed In:

Description metrol 2002-09-30 11:15:11 UTC
Version:           3.0 (using KDE 3.0.3)
Installed from:    compiled sources
Compiler:          gcc version 2.95.4 20020320 [FreeBSD]
OS:          FreeBSD (i386) release 4.7-RC

The Prev and Next icons work, but the keyboard shortcuts assigned to this function do not.  Instead a small gray box shows up, empty.  Looks like it's trying to pull up some kind of context menu with nothing loading.
Comment 1 András Manţia 2002-10-11 15:29:28 UTC
Subject: Re:  New: Alt left and right keys do not change view

Fixed in CVS.

Andras

On Monday 30 September 2002 12:15, you wrote:
> ------- You are receiving this mail because: -------
> You are the assignee for the bug, or are watching the assignee.
>
> http://bugs.kde.org/show_bug.cgi?id=48487
>            Summary: Alt left and right keys do not change view
>            Product: quanta
>            Version: unspecified
>           Platform: Compiled Sources
>         OS/Version: FreeBSD
>             Status: UNCONFIRMED
>           Severity: normal
>           Priority: NOR
>          Component: general
>         AssignedTo: amantia@freemail.hu
>         ReportedBy: metrol@metrol.net
>
>
> Version:           3.0 (using KDE 3.0.3)
> Installed from:    compiled sources
> Compiler:          gcc version 2.95.4 20020320 [FreeBSD]
> OS:          FreeBSD (i386) release 4.7-RC
>
> The Prev and Next icons work, but the keyboard shortcuts assigned to this
> function do not.  Instead a small gray box shows up, empty.  Looks like
> it's trying to pull up some kind of context menu with nothing loading.

Comment 2 metrol 2002-10-11 15:41:36 UTC
Marking as resolved on good faith.  If the fix was relatively minor, I'd like 
to know which files were affected so as to work up a patch over on the FreeBSD 
port.  Some time after I get all this 3.0.4 stuff compiled. 
Comment 3 András Manţia 2002-10-11 20:48:48 UTC
Subject: Re:  Alt left and right keys do not change view

On Friday 11 October 2002 16:41, metrol@metrol.net wrote:
> ------- You are receiving this mail because: -------
> You are the assignee for the bug, or are watching the assignee.
>
> http://bugs.kde.org/show_bug.cgi?id=48487
> metrol@metrol.net changed:
>
>            What    |Removed                     |Added
> ---------------------------------------------------------------------------
>- Status|UNCONFIRMED                 |RESOLVED
>          Resolution|                            |WORKSFORME
>
>
>
> ------- Additional Comments From metrol@metrol.net  2002-10-11 15:41
> ------- Marking as resolved on good faith.  If the fix was relatively
> minor, I'd like to know which files were affected so as to work up a patch
> over on the FreeBSD port.  Some time after I get all this 3.0.4 stuff
> compiled.


For this bug the fix is minor. Remove the following lines from quanta_init.cpp 
(initActions method):

    backAction = new KAction ( i18n("Back"), "back", ALT+Key_Left, this, SLOT( 
slotBack() ),    actionCollection(), "w_back" );
    forwardAction = new KAction ( i18n("Forward"), "forward", ALT+Key_Right, 
this, SLOT( slotForward() ),    actionCollection(), "w_forwa

Andras