Alanaktion / transmisson-remote-gui

Automatically exported from code.google.com/p/transmisson-remote-gui
GNU General Public License v2.0
1 stars 0 forks source link

Context menu doesn't work in Ubuntu 10.04 #207

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Start Transmission Remote GUI
2. Try to open context menu for torrent

What is the expected output? What do you see instead?
Menu items "Start", "Stop", "Remove" and etc. should be enabled, but they
is disabled.

What version of the product are you using? On what operating system?
Transmission Remote GUI 1.3.2. Also I have made upgrade to Ubuntu 10.04.

Please provide any additional information below.
Context menu for files in torrent also have similar problems.

Original issue reported on code.google.com by closer.m...@gmail.com on 17 Apr 2010 at 3:53

Attachments:

GoogleCodeExporter commented 9 years ago
Do you use a binary file available on this site or did you compile the app by 
yourself?

Original comment by j...@cp-lab.com on 30 Apr 2010 at 11:13

GoogleCodeExporter commented 9 years ago
I have tried both variants.

Original comment by closer.m...@gmail.com on 30 Apr 2010 at 11:19

GoogleCodeExporter commented 9 years ago
On Ubuntu 9.x the menu works fine.

Please apply and test the following changes to the 
TMainForm.lvLeftMouseSelect() in
main.pas:

procedure TMainForm.lvLeftMouseSelect(Sender: TObject; Button: TMouseButton; 
Shift:
TShiftState; X, Y: Integer);
var
  it: TListItem;
begin
  if Button = mbRight then
    with TListView(Sender) do begin
      it:=GetItemAt(x, y);
      if Selected <> nil then
        Selected.Focused:=False;
      Selected:=it;
      if it <> nil then
        it.Focused:=True;
      UpdateUI;
    end;
end;

Original comment by j...@cp-lab.com on 30 Apr 2010 at 11:43

GoogleCodeExporter commented 9 years ago
I have replaced lvLeftMouseSelect procedure but the problem persists.

Original comment by closer.m...@gmail.com on 2 May 2010 at 11:59

GoogleCodeExporter commented 9 years ago
In my case, the context menu is appearing on right-click, but the the selected 
torrent 
immediately switches to the one directly after the selected torrent.  So I get 
a 
context menu for torrent+1.

Original comment by reardo...@gmail.com on 3 May 2010 at 2:44

GoogleCodeExporter commented 9 years ago
ubuntu lucid (10.04) + transGUI 1.4 = same as reardonia.
... menu is working for torrent+1

Original comment by boolionc...@gmail.com on 11 Jun 2010 at 6:57

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
I m on ubuntu 10.04 (64bit).

On each right click, the selected item is incremented before the menu pop up.

Original comment by mmaur...@gmail.com on 12 Jul 2010 at 3:26

GoogleCodeExporter commented 9 years ago
same here as #8

Original comment by be...@tvzon.info on 21 Jul 2010 at 3:40

GoogleCodeExporter commented 9 years ago
Fixed in r358.

Original comment by j...@cp-lab.com on 3 Aug 2010 at 1:29