[Bug 495723] Re: the copy action doesn't work in the second after a directory load

2010-07-05 Thread Bug Watch Updater
** Changed in: nautilus
   Status: Confirmed = Invalid

-- 
the copy action doesn't work in the second after a directory load
https://bugs.launchpad.net/bugs/495723
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 495723] Re: the copy action doesn't work in the second after a directory load

2010-07-05 Thread Sebastien Bacher
*** This bug is a duplicate of bug 390662 ***
https://bugs.launchpad.net/bugs/390662

thank you for your work, the issue is the same than bug #390662 and we
will get the fix in the next upload

** This bug has been marked a duplicate of bug 390662
   several nautilus shortcuts don't work shortly after opening directory

** This bug is no longer a duplicate of bug 390662
   several nautilus shortcuts don't work shortly after opening directory

** Changed in: nautilus (Ubuntu)
 Assignee: Ubuntu Desktop Bugs (desktop-bugs) = (unassigned)

** This bug has been marked a duplicate of bug 390662
   several nautilus shortcuts don't work shortly after opening directory

** This bug is no longer a duplicate of bug 390662
   several nautilus shortcuts don't work shortly after opening directory

** This bug has been marked a duplicate of bug 390662
   several nautilus shortcuts don't work shortly after opening directory

** This bug is no longer a duplicate of bug 390662
   several nautilus shortcuts don't work shortly after opening directory

** This bug has been marked a duplicate of bug 390662
   several nautilus shortcuts don't work shortly after opening directory

** This bug is no longer a duplicate of bug 390662
   several nautilus shortcuts don't work shortly after opening directory

** This bug has been marked a duplicate of bug 390662
   several nautilus shortcuts don't work shortly after opening directory

** This bug is no longer a duplicate of bug 390662
   several nautilus shortcuts don't work shortly after opening directory

** This bug has been marked a duplicate of bug 390662
   several nautilus shortcuts don't work shortly after opening directory

** This bug is no longer a duplicate of bug 390662
   several nautilus shortcuts don't work shortly after opening directory

** This bug has been marked a duplicate of bug 390662
   several nautilus shortcuts don't work shortly after opening directory

-- 
the copy action doesn't work in the second after a directory load
https://bugs.launchpad.net/bugs/495723
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 495723] Re: the copy action doesn't work in the second after a directory load

2010-04-28 Thread Bug Watch Updater
** Changed in: nautilus
   Status: Unknown = Confirmed

-- 
the copy action doesn't work in the second after a directory load
https://bugs.launchpad.net/bugs/495723
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 495723] Re: the copy action doesn't work in the second after a directory load

2010-04-14 Thread Didier Roche
Thanks for your patch and helping to make ubuntu better.
I'm quite afraid of the side effects of your patch and would rather prefer 
upstream reviewing it. Can you please attach your patch to the linked upstream 
bug report?

-- 
the copy action doesn't work in the second after a directory load
https://bugs.launchpad.net/bugs/495723
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 495723] Re: the copy action doesn't work in the second after a directory load

2010-04-05 Thread Marcus Carlson
Starcraftmazter , actually you shouldn't install it as it's a dirty
hack. But if you'd like to try it, grab nautilus from git and apply the
patch and compile. Something along this lines (not tested)

$ sudo apt-get build-dep nautilus
$ git clone git.gnome.org/nautilus
$ cd nautilus
$ patch -p1  hack-copy.diff
$ ./autogen
$ make
$ sudo chmod -x /usr/bin/nautilus
$ src/nautilus -q
$ src/nautilus

when done testing
$ sudo chmod +x /usr/bin/nautilus

-- 
the copy action doesn't work in the second after a directory load
https://bugs.launchpad.net/bugs/495723
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 495723] Re: the copy action doesn't work in the second after a directory load

2010-04-05 Thread Starcraftmazter
Hmmm, I ran it, but CTRL+A, CTRL+C, CTRL+V don't seem to do anything,
nor does right click :S

-- 
the copy action doesn't work in the second after a directory load
https://bugs.launchpad.net/bugs/495723
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 495723] Re: the copy action doesn't work in the second after a directory load

2010-04-05 Thread Marcus Carlson
Strange. Could you try to change the return type to gboolean and return FALSE? 
I cannot test that right now.
Something like
+static gboolean
+key_press_event_cb (GtkWidget   *widget,
+   GdkEventKey *event,
+   FMDirectoryView *view)
+{
+   remove_update_menus_timeout_callback (view); 
+   real_update_menus (view);
+   return FALSE;
+}

-- 
the copy action doesn't work in the second after a directory load
https://bugs.launchpad.net/bugs/495723
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 495723] Re: the copy action doesn't work in the second after a directory load

2010-04-04 Thread Marcus Carlson
OK, took a quick look at the problem and here's what I found out.
The problem is that some entries in the menu (hidden) aren't enabled (sensible) 
until nautilus has scheduled an update_menus(). Also it's not only about when 
loading a folder, it could also be if you're selecting a file/folder and then 
quickly presses ctrl + c/x (also del is affected) it sometimes hasn't updated 
the state of the menu entries.

Solution? Maybe force update of the menu on some key presses, such as
ctrl, del, enter?

-- 
the copy action doesn't work in the second after a directory load
https://bugs.launchpad.net/bugs/495723
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 495723] Re: the copy action doesn't work in the second after a directory load

2010-04-04 Thread Marcus Carlson
Made a quick and dirty hack to update the menus on all key presses and
it *feels* like it's better. Feel free to try it out and comment how it
works for you.

** Patch added: Hack to better handle ctrl + c/x
   http://launchpadlibrarian.net/43099452/hack-copy.diff

-- 
the copy action doesn't work in the second after a directory load
https://bugs.launchpad.net/bugs/495723
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 495723] Re: the copy action doesn't work in the second after a directory load

2010-04-04 Thread Starcraftmazter
Hey mate thanks, sorry but how would I go about installing that? :P

-- 
the copy action doesn't work in the second after a directory load
https://bugs.launchpad.net/bugs/495723
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 495723] Re: the copy action doesn't work in the second after a directory load

2010-01-11 Thread Kensum T.
It should be added that the Ctrl+X has the same effect as Ctrl+C.
It's a bit odd, because the first action alway doesn't work...
In my case I have to do the action several times (due holding Ctrl and 
pressing X or C at least three or more times) to be sure that it works.

-- 
the copy action doesn't work in the second after a directory load
https://bugs.launchpad.net/bugs/495723
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 495723] Re: the copy action doesn't work in the second after a directory load

2010-01-11 Thread om26er
yes actually this has happened to me a lot and also i think this is an
upstream one.

-- 
the copy action doesn't work in the second after a directory load
https://bugs.launchpad.net/bugs/495723
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 495723] Re: the copy action doesn't work in the second after a directory load

2010-01-11 Thread om26er
and i found a way to reproduce it. open nautilus click on folder in the
side pane (om26er for me) then click on desktop(side pane icon) and then
click on a third location (not om26er) and select a folder and click
ctrl+c/ctrl+x and it wont happen the first time

** Changed in: nautilus (Ubuntu)
   Status: New = Confirmed

** Changed in: hundredpapercuts
   Status: New = Confirmed

-- 
the copy action doesn't work in the second after a directory load
https://bugs.launchpad.net/bugs/495723
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 495723] Re: the copy action doesn't work in the second after a directory load

2010-01-11 Thread om26er
i have reported this upstream. comments there are appreciated
https://bugzilla.gnome.org/show_bug.cgi?id=606619

** Bug watch added: GNOME Bug Tracker #606619
   https://bugzilla.gnome.org/show_bug.cgi?id=606619

** Also affects: nautilus via
   https://bugzilla.gnome.org/show_bug.cgi?id=606619
   Importance: Unknown
   Status: Unknown

-- 
the copy action doesn't work in the second after a directory load
https://bugs.launchpad.net/bugs/495723
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 495723] Re: the copy action doesn't work in the second after a directory load

2010-01-11 Thread om26er
change to triaged/Low

-- 
the copy action doesn't work in the second after a directory load
https://bugs.launchpad.net/bugs/495723
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 495723] Re: the copy action doesn't work in the second after a directory load

2010-01-11 Thread Pedro Villavicencio
** Changed in: nautilus (Ubuntu)
   Status: Confirmed = Triaged

-- 
the copy action doesn't work in the second after a directory load
https://bugs.launchpad.net/bugs/495723
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 495723] Re: the copy action doesn't work in the second after a directory load

2009-12-14 Thread Starcraftmazter
Happens to me literally all the time. No need to visually parse the
directory if you cache the required query :P

-- 
the copy action doesn't work in the second after a directory load
https://bugs.launchpad.net/bugs/495723
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs