[Bug 160311] Re: Resizing windows by grabbing window borders is difficult

2010-07-07 Thread Marcus Carlson
Compiz 0.9.0 did mention a plugin that would change the resize area of a
window.

From http://lists.freedesktop.org/archives/compiz/2010-July/003429.html

* Added edge support to grid plugin so windows can easily be resized by dragging
  to an edge or corner

Could that help?

-- 
Resizing windows by grabbing window borders is difficult
https://bugs.launchpad.net/bugs/160311
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to metacity in ubuntu.

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


[Bug 433673] Re: Crash with empty .savedSearch file

2010-06-27 Thread Marcus Carlson
awalton, could you post the patch upstream instead (or just commit) or
do you think we should wait for the search functions to be rewritten?

-- 
Crash with empty .savedSearch file
https://bugs.launchpad.net/bugs/433673
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 390218] Re: the nautilus password dialog is unfriendly

2010-06-13 Thread Marcus Carlson
Actually this is not a nautilus problem but a gvfs. However I think I
can create a patch for it. Stay tuned ;)

-- 
the nautilus password dialog is unfriendly
https://bugs.launchpad.net/bugs/390218
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 390218] Re: the nautilus password dialog is unfriendly

2010-06-13 Thread Marcus Carlson

** Patch added: Adds a friendly prompt when connecting to a ssh host
   http://launchpadlibrarian.net/50281512/gvfs_ssh_prompt.diff

-- 
the nautilus password dialog is unfriendly
https://bugs.launchpad.net/bugs/390218
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 390218] Re: the nautilus password dialog is unfriendly

2010-06-13 Thread Marcus Carlson
Forgot to comment that the patch is against gvfs git master.

** Changed in: nautilus (Ubuntu)
   Status: Triaged = Invalid

-- 
the nautilus password dialog is unfriendly
https://bugs.launchpad.net/bugs/390218
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 403135] Re: Notification area icon wrongly rendered/uses bg_color as a background (multiple apps)

2010-05-09 Thread Marcus Carlson
@skalka, would creating a new theme setting for panel background and
have the tray icons get the background color from it help?

-- 
Notification area icon wrongly rendered/uses bg_color as a background (multiple 
apps)
https://bugs.launchpad.net/bugs/403135
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-panel in ubuntu.

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


[Bug 201435] Re: nautilus-connect-server crashed with SIGSEGV in nautilus_connect_server_dialog_init()

2010-04-17 Thread Marcus Carlson
How can I reproduce this bug? I just started nautilus-connect-server and
did not get any segfault.

-- 
nautilus-connect-server crashed with SIGSEGV in 
nautilus_connect_server_dialog_init()
https://bugs.launchpad.net/bugs/201435
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 542823] Re: gnome-session crashed with SIGSEGV in g_slice_alloc()

2010-04-17 Thread Marcus Carlson
I've got a similar issue; after login and running sudo chmod -x
/usr/bin/nautilus; killall nautilus (to be able to do nautilus
hacking), a few minutes later gnome-session crashes. Got this about two
or three times. Hope it helps.

-- 
gnome-session crashed with SIGSEGV in g_slice_alloc()
https://bugs.launchpad.net/bugs/542823
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-session in ubuntu.

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


[Bug 418979] Re: nautilus crashed with SIGSEGV in g_shell_quote()

2010-04-17 Thread Marcus Carlson
This is not an upstream issue but a problem in a patch from ubuntu 
(82_gnome-app-install.patch):
+void launch_gnome_app_install_mimetype(GdkScreen  *screen,
+  NautilusFile *file,
+  char *uri) {
+   char *qmimetype, *quri, *qduri, *command;
+   if (!screen)
+   screen = gdk_display_get_default_screen(gdk_display_get_default 
());
+
+   qmimetype = g_shell_quote (nautilus_file_info_get_mime_type (file));
+   quri = g_shell_quote (uri);
+   command = g_strconcat(gnome-app-install --mime-type=,
+qmimetype,  , quri, 
+(char*)0 /* NB NULL is wrong */);
+   g_free (qmimetype);
+   g_free (quri);
+   g_free (qduri);
+
+   //eel_gnome_shell_execute_on_screen (command, screen);
+   gdk_spawn_command_line_on_screen (screen, command, NULL);
+   g_free (command);
+}


Probably best to check NULL for nautilus_file_info_get_mime_type () as it 
could, but very very rarely return NULL:
char *
nautilus_file_get_mime_type (NautilusFile *file)
{
if (file != NULL) {
g_return_val_if_fail (NAUTILUS_IS_FILE (file), NULL);
if (file-details-mime_type != NULL) {
return g_strdup (eel_ref_str_peek 
(file-details-mime_type));
}
}
return g_strdup (application/octet-stream);
}

(Note, nautilus_file_info_get_mime_type() just calls the interface
function)

-- 
nautilus crashed with SIGSEGV in g_shell_quote()
https://bugs.launchpad.net/bugs/418979
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 421059] Re: nautilus crashed with SIGSEGV in malloc()

2010-04-17 Thread Marcus Carlson
Isn't this fixed in Karmic stable and Lucid? I remember I had this issue
a long time ago but then it vanished.

-- 
nautilus crashed with SIGSEGV in malloc()
https://bugs.launchpad.net/bugs/421059
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 424956] Re: nautilus crashed with SIGABRT in raise()

2010-04-17 Thread Marcus Carlson
My guess is a rare race condition, on the other hand this is reported
against a developer version of nautilus. Could anyone reproduce this
issue in a stable release?

-- 
nautilus crashed with SIGABRT in raise()
https://bugs.launchpad.net/bugs/424956
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 468280] Re: Nautilus crashed while page down/page up in unloaded folder

2010-04-17 Thread Marcus Carlson
This backtrace might be related.

Steps to reproduce:
1. Open the tree view in the side pane
2. Navigate to /proc/ and one of the first processes under, eg 1
3. Hit page down, space, page down, space rapidly until nautilus crashes 
(normally when you reach the end of the tree)

Looks like the problem lies within gtk and not nautilus, but I might be
wrong.

** Attachment added: nautilus-gtk-crash.txt
   http://launchpadlibrarian.net/44576725/nautilus-gtk-crash.txt

-- 
Nautilus crashed while page down/page up in unloaded folder
https://bugs.launchpad.net/bugs/468280
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 468280] Re: Nautilus crashed while page down/page up in unloaded folder

2010-04-17 Thread Marcus Carlson
Oh, forgot to add, I cannot reproduce the original problem.

-- 
Nautilus crashed while page down/page up in unloaded folder
https://bugs.launchpad.net/bugs/468280
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 317569] Re: Displaying a directory of PDFs, zoom does not work as expected

2010-04-17 Thread Marcus Carlson
Just tried on Lucid and it seems to be working just fine. Do you still
have this problem?

-- 
Displaying a directory of PDFs, zoom does not work as expected
https://bugs.launchpad.net/bugs/317569
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 148036] Re: Pushing backspace deletes links in places accidently

2010-04-13 Thread Marcus Carlson
For info, I just attached a patch upstream.

-- 
Pushing backspace deletes links in places accidently
https://bugs.launchpad.net/bugs/148036
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 210160] Re: Emblems are invisible if zoom is set to 50%

2010-04-11 Thread Marcus Carlson
Still a problem? Just tried this in 2.28.1with a few different themes
and an emblem on a folder and with 50% zoom it's there.

-- 
Emblems are invisible if zoom is set to 50%
https://bugs.launchpad.net/bugs/210160
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 46846] Re: Emblems get cut when scaled to a zoom = 150% (refresh issue)

2010-04-07 Thread Marcus Carlson
Fixed upstream :)

-- 
Emblems get cut when scaled to a zoom = 150% (refresh issue)
https://bugs.launchpad.net/bugs/46846
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a direct subscriber.

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


[Bug 390218] Re: the nautilus password dialog is unfriendly

2010-04-06 Thread Marcus Carlson
Actually, it does seems to be a problem. I just opened a URL with ctrl +
l and entered ssh://u...@host and then the dialog said Enter password.
I'll see if I can take a look at this issue later.

-- 
the nautilus password dialog is unfriendly
https://bugs.launchpad.net/bugs/390218
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 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 308261] Re: File Operations Dialogue is not scalable in Nautilus and causes Jitter

2010-04-05 Thread Marcus Carlson
It surly isn't good looking but it's resizeable ;-) Comments?

Patch in sec.

** Attachment added: fopresize.png
   http://launchpadlibrarian.net/43193852/fopresize.png

-- 
File Operations Dialogue is not scalable in Nautilus and causes Jitter
https://bugs.launchpad.net/bugs/308261
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 308261] Re: File Operations Dialogue is not scalable in Nautilus and causes Jitter

2010-04-05 Thread Marcus Carlson
Patch to make File Operations dialog resizable

** Patch added: fopresize.diff
   http://launchpadlibrarian.net/43194064/fopresize.diff

-- 
File Operations Dialogue is not scalable in Nautilus and causes Jitter
https://bugs.launchpad.net/bugs/308261
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 19069] Re: Nautilus browser's pathbar displays non-existent folders

2010-04-05 Thread Marcus Carlson
Ted, what's the status of the patch? Waiting for review or want help?

-- 
Nautilus browser's pathbar displays non-existent folders
https://bugs.launchpad.net/bugs/19069
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a direct subscriber.

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


[Bug 390218] Re: the nautilus password dialog is unfriendly

2010-04-05 Thread Marcus Carlson
Do you still have this issue? On lucid (beta) it looks like this.
(Sorry, but the text in swedish is something along the lines Enter
password for ftp as *username* on *host*)

** Attachment added: password-dialog.png
   http://launchpadlibrarian.net/43195832/password-dialog.png

-- 
the nautilus password dialog is unfriendly
https://bugs.launchpad.net/bugs/390218
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 429041] Re: should ask confirmation before opening a multiple items selection

2010-04-05 Thread Marcus Carlson
** Changed in: hundredpapercuts
 Assignee: (unassigned) = Marcus Carlson (0-launchpad-mejlamej-nu)

-- 
should ask confirmation before opening a multiple items selection
https://bugs.launchpad.net/bugs/429041
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 19069] Re: Nautilus browser's pathbar displays non-existent folders

2010-04-05 Thread Marcus Carlson
I'm going to ping alex (nautilus maintainer) about a few bugs this week,
I could see if he could comment on this one as well...

-- 
Nautilus browser's pathbar displays non-existent folders
https://bugs.launchpad.net/bugs/19069
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a direct subscriber.

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


[Bug 503330] Re: In the file operation dialog, the file count and the size count change in opposite direction.

2010-04-04 Thread Marcus Carlson
For information: I just posted a patch upstream.

-- 
In the file operation dialog, the file count and the size count change in 
opposite direction.
https://bugs.launchpad.net/bugs/503330
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 8949] Re: Opening a deleted 'recent document' results in a new file.

2010-04-04 Thread Marcus Carlson
David, could you comment on what behavior you'd like?

-- 
Opening a deleted 'recent document' results in a new file.
https://bugs.launchpad.net/bugs/8949
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a direct subscriber.

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


[Bug 476615] Re: Nautilus crashes when middle click on network bookmark

2010-04-04 Thread Marcus Carlson
Patch to not make nautilus crash on middle click invalid network share
and also closes the newly created tab.

** Patch added: tabcrash.diff
   http://launchpadlibrarian.net/43114325/tabcrash.diff

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

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

-- 
Nautilus crashes when middle click on network bookmark
https://bugs.launchpad.net/bugs/476615
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 268497] Re: double clicking on a non local bookmark trigger a dbus error

2010-04-04 Thread Marcus Carlson
Still a problem in lucid?

-- 
double clicking on a non local bookmark trigger a dbus error
https://bugs.launchpad.net/bugs/268497
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 46846] Re: Emblems get cut when scaled to a zoom = 150% (refresh issue)

2010-04-03 Thread Marcus Carlson
As I understand this can be worked around by adding a *.icon file for
each folder and file icon with attach points [1] as the rendering is
working for that (could be a good workaround for lucid if you don't want
to patch nautilus).

[1] http://standards.freedesktop.org/icon-theme-spec/icon-theme-spec-
latest.html

-- 
Emblems get cut when scaled to a zoom = 150% (refresh issue)
https://bugs.launchpad.net/bugs/46846
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a direct subscriber.

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


[Bug 503330] Re: In the file operation dialog, the file count and the size count change in opposite direction.

2010-04-03 Thread Marcus Carlson
** Changed in: hundredpapercuts
 Assignee: (unassigned) = Marcus Carlson (0-launchpad-mejlamej-nu)

-- 
In the file operation dialog, the file count and the size count change in 
opposite direction.
https://bugs.launchpad.net/bugs/503330
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 431073] Re: spacebar in nautilus should not open a file

2010-03-29 Thread Marcus Carlson
fyi, I just applied a patch upstream.

-- 
spacebar in nautilus should not open a file
https://bugs.launchpad.net/bugs/431073
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 46846] Re: Emblems get cut when scaled to a zoom = 150% (refresh issue)

2010-03-28 Thread Marcus Carlson
For info; I just attached a patch on upstream bugreport. Feel free to
try it out and comment. Works for me (tm) :)

-- 
Emblems get cut when scaled to a zoom = 150% (refresh issue)
https://bugs.launchpad.net/bugs/46846
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a direct subscriber.

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


[Bug 385785] Re: Open location dialog should not close on invalid path

2010-01-23 Thread Marcus Carlson
I'm waiting for someone (eg Alex) to review the patch. I could ping him
on Monday again.

-- 
Open location dialog should not close on invalid path
https://bugs.launchpad.net/bugs/385785
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 301552] Re: in trash: show delete-date

2010-01-10 Thread Marcus Carlson
Neil, yep that would be it. I'm not sure if it will apply cleanly
against 2.29 - but you're welcome to update it if its not ;)

-- 
in trash: show delete-date 
https://bugs.launchpad.net/bugs/301552
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 301552] Re: in trash: show delete-date

2010-01-10 Thread Marcus Carlson
Neil, not sure what you mean - but all the code in the patch is necessary. I 
just tried the patch against the latest 2.29.1 release and it seems to apply 
nicely (I cannot test to compile it atm).
About the formatting; I hope it's standard nautilus formatting :) - in case not 
- please tell me what's wrong and I'll try to fix it.

-- 
in trash: show delete-date 
https://bugs.launchpad.net/bugs/301552
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 148297] Re: Ctrl+Shift Select doesn't select a new set of files

2010-01-07 Thread Marcus Carlson
Quite off topic but, i did fix a couple of things in nautilus but now
I've got more interesting stuff to work on - I hope I'll get time to fix
things in nautilus later again.

Do not give up - getting to know a codebase as large and complex as
nautilus does take time. Begin with the easier things first (might not
be something you care about, but certainly someone else) and when you
feel comfortable browsing the code then you get the bigger fishes ;)

-- 
Ctrl+Shift Select doesn't select a new set of files
https://bugs.launchpad.net/bugs/148297
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 148297] Re: Ctrl+Shift Select doesn't select a new set of files

2010-01-06 Thread Marcus Carlson
@Neil, np ;) . Almost forgot I had this one fixed. Nice to finally see
it get into ubuntu :)

I'm just doing it for fun and to get my OS of choice better :)

-- 
Ctrl+Shift Select doesn't select a new set of files
https://bugs.launchpad.net/bugs/148297
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 485923] Re: Probable memory leak in gnome-settings-daemon/gnome-volume-control-applet

2009-12-22 Thread Marcus Carlson
@Alistair Buxton, I've seen the leak as well (both volume applet and
settings daemon). Right now both of them are using 13% each of my 8GB
RAM (+8GB for swap) with an uptime of 10 days. I use Spotify using wine
all day.

USER   PID %CPU %MEMVSZ   RSS TTY  STAT START   TIME COMMAND
marcus3553  0.4 13.8 1500724 1137968 ? Ssl  Dec12  63:49 
/usr/lib/gnome-settings-daemon/gnome-settings-daemon
marcus3768  0.2 13.5 1457092 1112064 ? SDec12  43:12 
gnome-volume-control-applet

-- 
Probable memory leak in gnome-settings-daemon/gnome-volume-control-applet
https://bugs.launchpad.net/bugs/485923
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 485923] Re: Probable memory leak in gnome-settings-daemon/gnome-volume-control-applet

2009-12-22 Thread Marcus Carlson
Forgot a few things.
I'm using wine from winehq (1.1.32~winehq0~ubuntu~9.04-0ubuntu1). Also, isn't 
Spotify polling the volume because when lowering the volume during commercial 
the playback is paused - could that be the cause for the flickering in the 
gvca window?

-- 
Probable memory leak in gnome-settings-daemon/gnome-volume-control-applet
https://bugs.launchpad.net/bugs/485923
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 160311] Re: Resizing windows by grabbing window borders is difficult

2009-12-07 Thread Marcus Carlson
Not a fix or anything but i almost always use the alt + middle click to
resize windows.

-- 
Resizing windows by grabbing window borders is difficult
https://bugs.launchpad.net/bugs/160311
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to metacity in ubuntu.

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


[Bug 150690] Re: Can't drag a window to another workspace

2009-11-09 Thread Marcus Carlson
Oded, actually patches to make it work is availble and i think Fedora
includes those in their package. The problem is that Vincent would like
to rewrite the whole workspace/viewport code to make it generic. I guess
he doesn't have time to fix this atm as all work goes towards gnome-
shell and gnome 3.0.

-- 
Can't drag a window to another workspace
https://bugs.launchpad.net/bugs/150690
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 410260] Re: nautilus ignores quota-full messages

2009-10-05 Thread Marcus Carlson
Pedro, no this is not reported upstream. As Sebastien wrote; somebody
having this problem should report it upstream and update this bug with
that bug number.

-- 
nautilus ignores quota-full messages
https://bugs.launchpad.net/bugs/410260
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 435780] Re: opening of non local files relies on filename to be correct

2009-10-04 Thread Marcus Carlson
Jonas, fixed in git [1]; when the error dialog appears you now have the
option to select the application you'd like to open the file with.

[1]
http://git.gnome.org/cgit/nautilus/commit/?id=58a073303977708516d3a1ff4528a7ef7ace7f26

-- 
opening of non local files relies on filename to be correct
https://bugs.launchpad.net/bugs/435780
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 401079] Re: symbolic link shows wrong file-size

2009-10-04 Thread Marcus Carlson
kent808, I just created a symbolic link in both jaubty and karmic and
could not reproduce the problem. Is this a problem with all your
symlinks or just this one?

-- 
symbolic link shows wrong file-size
https://bugs.launchpad.net/bugs/401079
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 205271] Re: Unable to delete a certain folder in the trash

2009-10-04 Thread Marcus Carlson
Ernest, note that a .trash folder exists in the root of every harddrive
(like a usb disk) you have deleted data from. So only looking at the
.trash in your home folder will only show deleted files from your home
folder (or anything else you've removed on the same disk). Do you know
if there's any other mounted filesystem when the mystic folder appears
in the Trash? If so, take a look at the root of that drive and see if
you can find the folder .trash-yourid (probably .trash-1000).

-- 
Unable to delete a certain folder in the trash
https://bugs.launchpad.net/bugs/205271
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 387542] Re: No obvious way to show Trash, Home, etc. icons on Desktop

2009-10-04 Thread Marcus Carlson
How about adding options to show the folders in gnome-appearance-
properties in a new tab called Desktop?

-- 
No obvious way to show Trash, Home, etc. icons on Desktop
https://bugs.launchpad.net/bugs/387542
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 395852] Re: On my Sims 3 DVD in UDF is only one folder shown but there are more than one folders

2009-10-03 Thread Marcus Carlson
Jonas, could you see if you have a .hidden file on that DVD and also try
to show hidden files and see if the files shows up?

-- 
On my Sims 3 DVD in UDF is only one folder shown but there are more than one 
folders
https://bugs.launchpad.net/bugs/395852
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 385785] Re: Open location dialog should not close on invalid path

2009-10-02 Thread Marcus Carlson
dael99, work is progressing upstream - I now focus on getting the Open
Location dialog back after failure to open the location. The first patch
was not accepted by upstream because it was using blocking I/O.

-- 
Open location dialog should not close on invalid path
https://bugs.launchpad.net/bugs/385785
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 301552] Re: in trash: show delete-date

2009-10-02 Thread Marcus Carlson
Sancho Panza, it's probably because you're running karmic and got
unlucky. Wait a few days and then try again and the repo is probably in
a good state.

-- 
in trash: show delete-date 
https://bugs.launchpad.net/bugs/301552
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 148297] Re: Ctrl+Shift Select doesn't select a new set of files

2009-09-27 Thread Marcus Carlson
Is it something like this you'd like?
(Sorry about the size)

** Attachment added: nautilus_multiselect.ogv
   http://launchpadlibrarian.net/32530361/nautilus_multiselect.ogv

-- 
Ctrl+Shift Select doesn't select a new set of files
https://bugs.launchpad.net/bugs/148297
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 429041] Re: accidental opening of many documents at once

2009-09-27 Thread Marcus Carlson
** Also affects: nautilus
   Importance: Undecided
   Status: New

** Also affects: nautilus (Ubuntu)
   Importance: Undecided
   Status: New

-- 
accidental opening of many documents at once
https://bugs.launchpad.net/bugs/429041
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 148297] Re: Ctrl+Shift Select doesn't select a new set of files

2009-09-27 Thread Marcus Carlson
Neil, patch is upstream now - let's hope someone sees it and finds it
enough useful for inclusion.

-- 
Ctrl+Shift Select doesn't select a new set of files
https://bugs.launchpad.net/bugs/148297
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 389705] Re: Nautilus: dropdown view selector, better be 1-Click icon

2009-09-26 Thread Marcus Carlson
If I'm not completely mistaken, this and other suggestions to the
toolbar could be fixed as plugins or optional components ones the
toolbar editor [1] is in place.

[1] https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/13119

-- 
Nautilus: dropdown view selector, better be 1-Click icon
https://bugs.launchpad.net/bugs/389705
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 387792] Re: cannot right-click any element of gnome-panel if Places menu is open

2009-09-26 Thread Marcus Carlson
Sebastien, where has this bug been reported? Why isn't this one marked
as a duplicate?

-- 
cannot right-click any element of gnome-panel if Places menu is open
https://bugs.launchpad.net/bugs/387792
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 130997] Re: Non-Linux hidden files like Thumbs.db should be treated the same as .filename

2009-09-24 Thread Marcus Carlson
gvfs could add custom layer to hide files using the standard .hidden
file in each directory.

-- 
Non-Linux hidden files like Thumbs.db should be treated the same as .filename
https://bugs.launchpad.net/bugs/130997
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 25619] Re: eog doesn't ask whether to save changes

2009-09-24 Thread Marcus Carlson
** Changed in: hundredpapercuts
 Assignee: (unassigned) = Marcus Carlson (0-launchpad-mejlamej-nu)

-- 
eog doesn't ask whether to save changes
https://bugs.launchpad.net/bugs/25619
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a direct subscriber.

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


[Bug 22115] Re: nautilus shoud have an open with dialog for non-associated files

2009-09-23 Thread Marcus Carlson
For information, patch (and screencast!) posted upstream.

-- 
nautilus shoud have an open with dialog for non-associated files
https://bugs.launchpad.net/bugs/22115
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a direct subscriber.

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


[Bug 275495] Re: nautilus search, when several places are choosen only the latest is searched

2009-09-21 Thread Marcus Carlson
Sebastien, yes I will, I have more patches that needs review so I'll
contact them on IRC.

-- 
nautilus search, when several places are choosen only the latest is searched
https://bugs.launchpad.net/bugs/275495
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 55996] Re: F2 selects all but extention, double F2 should toggle

2009-09-21 Thread Marcus Carlson
Patch created upstream, if you're brave - give it a try!

-- 
F2 selects all but extention, double F2 should toggle
https://bugs.launchpad.net/bugs/55996
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 275495] Re: nautilus search, when several places are choosen only the latest is searched

2009-09-20 Thread Marcus Carlson
braweheart, of course you could make a wish ;-). But I do think you
should create a separate bug for it (as this bug is for fixing what is
broken). Fixing this for the simple search engine should be quite easy
but I'm not sure how to do it for tracker and beagle (but still not
trivial as you need to update the file format, the query api etc etc).

I'd say the chance is low to get it into karmic unless the tracker and
beagle people jump in and fix there engines and the nautilus dev are
really quick to say they'll commit this after the freeze and the karmic
packagers want an extra patch to carry around But we can wish :)

-- 
nautilus search, when several places are choosen only the latest is searched
https://bugs.launchpad.net/bugs/275495
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 433673] [NEW] Crash with empty .savedSearch file

2009-09-20 Thread Marcus Carlson
Public bug reported:

Binary package hint: nautilus

This is not a major problem as it can only be reproduced synthetically but 
still it should be fixed as it crashes nautilus every time.
Steps to reproduce:
 1. Create a new file named foo.savedSearch
 2. Double click the new file

Nautilus has now crashed.

I can probably fix this myself later but not now, just creating this
report so it wont be forgotten.

Stacktrace from Jaunty
#0  0x7f50384afe09 in _g_utf8_normalize_wc (str=0x0, max_len=-1, 
mode=G_NORMALIZE_DEFAULT)
at /build/buildd/glib2.0-2.20.1/glib/gunidecomp.c:364
#1  0x7f50384b0443 in IA__g_utf8_normalize (str=0x0, len=-1, 
mode=G_NORMALIZE_DEFAULT)
at /build/buildd/glib2.0-2.20.1/glib/gunidecomp.c:525
#2  0x004fd169 in nautilus_search_engine_simple_start (
engine=value optimized out) at nautilus-search-engine-simple.c:112
#3  0x00471ad0 in finish_loading (view=0x1d3dc50)
at fm-directory-view.c:8535
#4  0x004b29d7 in call_ready_callbacks_at_idle (
callback_data=value optimized out) at nautilus-directory-async.c:1908
#5  0x7f503847e20a in IA__g_main_context_dispatch (context=0x17b98e0)
at /build/buildd/glib2.0-2.20.1/glib/gmain.c:1814
#6  0x7f50384818e0 in g_main_context_iterate (context=0x17b98e0, block=1, 
dispatch=1, self=value optimized out)
at /build/buildd/glib2.0-2.20.1/glib/gmain.c:2448
#7  0x7f5038481dad in IA__g_main_loop_run (loop=0x1b05f60)
at /build/buildd/glib2.0-2.20.1/glib/gmain.c:2656
#8  0x7f5039cebbc7 in IA__gtk_main ()
at /build/buildd/gtk+2.0-2.16.1/gtk/gtkmain.c:1205
#9  0x00442bc7 in main (argc=1, argv=0x7fff43871ce8)
at nautilus-main.c:518

** Affects: nautilus (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Crash with empty .savedSearch file
https://bugs.launchpad.net/bugs/433673
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 130997] Re: Non-Linux hidden files like Thumbs.db should be treated the same as .filename

2009-09-20 Thread Marcus Carlson
Hmm, seems the kernel devs where not so happy about the idea. If we
really want this it should be done in gvfs (with filesystem specific
checks) and not in nautilus, definitely not with blacklists.

-- 
Non-Linux hidden files like Thumbs.db should be treated the same as .filename
https://bugs.launchpad.net/bugs/130997
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 192900] Re: automatically use image (e.g. folder.jpg) as a folder image

2009-09-20 Thread Marcus Carlson
Can't Rhythmbox use the new gvfs api [1] and set the icon itself?

http://mail.gnome.org/archives/nautilus-
list/2009-September/msg00020.html

-- 
automatically use image (e.g. folder.jpg) as a folder image
https://bugs.launchpad.net/bugs/192900
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 388904] Re: Nautilus 'Computer' displays redundant labels

2009-09-19 Thread Marcus Carlson
The original bug that wanted this change:
https://bugzilla.gnome.org/show_bug.cgi?id=578574

And the git commit:
http://git.gnome.org/cgit/gvfs/commit/?id=62a573a22dc12f0f6d6afddc41d93059dc19a90e

David, Seb, what to do?

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

-- 
Nautilus 'Computer' displays redundant labels
https://bugs.launchpad.net/bugs/388904
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 388445] Re: Moving to trash a file with a long name cause a oversized dialog

2009-09-19 Thread Marcus Carlson
** Changed in: hundredpapercuts
   Status: Fix Committed = Fix Released

-- 
Moving to trash a file with a long name cause a oversized dialog
https://bugs.launchpad.net/bugs/388445
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 39328] Re: Disable scrolling on window list to flip through windows

2009-09-19 Thread Marcus Carlson
I've been pinging vuntz for the last couple of weeks about this and
other gnome-panel bugs ([1], or compiz problems with workspace switcher)
but it seems he never got the time to look them through and commit them
which is very sad. Now we're past hard code freeze and gnome-shell is
getting all attention so I don't think this and other gnome-panel
features will ever be committed unless someone takes over the
maintenance of gnome-panel (vuntz said he won't).

So, either we close this one as a wont fix (which is a shame) or applies
this to ubuntu (problem because of strings that needs to be translated).

[1] https://bugs.launchpad.net/ubuntu/+source/gnome-panel/+bug/44082

-- 
Disable scrolling on window list to flip through windows
https://bugs.launchpad.net/bugs/39328
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a direct subscriber.

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


[Bug 275495] Re: nautilus search, when several places are choosen only the latest is searched

2009-09-19 Thread Marcus Carlson
OK, the problem is actually worse than I thought. Not in a single place (except 
for the gui) is the code enabled to handle more than one location, ranging from 
the NautilusQuery class, the engines to the XML file for saved queries.
This is obviously not a papercut unless we disable the option to add multiple 
places in the gui (isn't super easy either).

David?

-- 
nautilus search, when several places are choosen only the latest is searched
https://bugs.launchpad.net/bugs/275495
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 275495] Re: nautilus search, when several places are choosen only the latest is searched

2009-09-19 Thread Marcus Carlson
Adding a error dialog when searching multiple locations seems like the
easiest (and ugliest) option.

-- 
nautilus search, when several places are choosen only the latest is searched
https://bugs.launchpad.net/bugs/275495
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 275495] Re: nautilus search, when several places are choosen only the latest is searched

2009-09-19 Thread Marcus Carlson
OK, maybe it wasn't *that* hard to fix - I've now got multi location
search working. Patch later or tomorrow. Here's a screenshot for proof
;-)

** Attachment added: Screenshot of the impossible
   http://launchpadlibrarian.net/32087317/nautilus-search.png

-- 
nautilus search, when several places are choosen only the latest is searched
https://bugs.launchpad.net/bugs/275495
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 275495] Re: nautilus search, when several places are choosen only the latest is searched

2009-09-19 Thread Marcus Carlson
Upstream bugzilla seems to have problem attaching files atm [1] so I'm
attaching it here first.

This patch fixes the problem when you've selected multiple search
locations and only the last one was search. It changes the NautilusQuery
api, the savedSearch file format (compatible with previous format) and
updates the simple search.

As I'm not a tracker nor beagle expert I'd like them to update the other
engines.

Please give it a try and comment your result.

[1] https://bugzilla.gnome.org/show_bug.cgi?id=595701

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

** Attachment added: Fixes multi location searches in simple engine
   
http://launchpadlibrarian.net/32088002/nautilus_search_multi_location_simple2.patch

** Attachment removed: Screenshot of the impossible
   http://launchpadlibrarian.net/32087317/nautilus-search.png

-- 
nautilus search, when several places are choosen only the latest is searched
https://bugs.launchpad.net/bugs/275495
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 275495] Re: nautilus search, when several places are choosen only the latest is searched

2009-09-19 Thread Marcus Carlson

** Attachment added: Screenshot of multiple folders search (now cropped)
   http://launchpadlibrarian.net/32088070/nautilus-search.png

-- 
nautilus search, when several places are choosen only the latest is searched
https://bugs.launchpad.net/bugs/275495
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 433313] [NEW] Aisleriot should use Ctrl+q quit

2009-09-19 Thread Marcus Carlson
Public bug reported:

Binary package hint: gnome-games

All (?) the other games in the gnome-games series uses Ctrl+q to quit
while Aisleriot uses Ctrl+w.

** Affects: gnome-games (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Aisleriot should use Ctrl+q quit
https://bugs.launchpad.net/bugs/433313
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-games in ubuntu.

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


[Bug 381556] Re: disappeared keybindings

2009-09-19 Thread Marcus Carlson
Actually vinagre has the checkbox Show menu shortcuts in the
preferences dialog. This should be removed unless very good reason as
this breaks the consistency among the gnome applications.

** Changed in: vinagre (Ubuntu)
   Status: Incomplete = Confirmed

-- 
disappeared keybindings
https://bugs.launchpad.net/bugs/381556
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to vinagre in ubuntu.

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


[Bug 301552] Re: in trash: show delete-date

2009-09-15 Thread Marcus Carlson
Sancho, np ;-) but if you wanna try it out anyway here's a quick guide
to let you patch nautilus manually (actually, most of this can be used
for other packages as well).

Create a directory to put your packages in, such as ~/mypackages/
# mkdir mypackages  cd mypackages

Get the source for nautilus
# apt-get source nautilus

Make sure we have all the stuff needed for building it
# apt-get build-dep nautilus

cd in to the nautilus-XXX path, were XXX is current version
# cd nautilus-XXX

copy the patch from upstream report into the debian/patches
# cp /path/to/patch/nautilus_trash_columns_arrange.patch 
debian/patches/10_nautilus_trash_columns_arrange.patch

I gave it the prefix 10 - but I cannot say what number (actually the
order when the patch will be applied) will work. Trial and error here.

Some packages has a series file which define the order the patches will be 
applied. Nautilus is such a package. Edit the file and put the name of the file 
in the list at some place.
# nano debian/patches/series

Now lets build the package (this will take some time, go grab some
coffee and hold tight to your lucky amulet)

# dpkg-buildpackage -rfakeroot -b -tc

If the build succeeded we will have a bunch of .deb files in the
~/mypackages folder so let's go there and install them

# cd ..
# sudo dpkg -i *.deb

Log out and log in and you'll have the new nautilus.

IF something for some reason didn't work well with the new version it's
easy to remove it and install the Ubuntu version.

# sudo apt-get update  sudo apt-get upgrade

This will replace your version with the real one, so either be careful
about your next upgrade if you'd like to keep your modified one.

(This comment, or article, will most likely contain errors so keep your
head sharp ;-))

-- 
in trash: show delete-date 
https://bugs.launchpad.net/bugs/301552
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 301552] Re: in trash: show delete-date

2009-09-14 Thread Marcus Carlson
Sancho Panza, patch added to upstream bugreport - feel free to try it
out :)

-- 
in trash: show delete-date 
https://bugs.launchpad.net/bugs/301552
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 301035] Re: Place an Ubuntu icon/emblem on the system partition

2009-09-13 Thread Marcus Carlson
Fred, as I said I wanted that name to be able to use the
g_themed_icon_new_with_default_fallbacks () function - if you would like
to change how the icon looks like you just edit the icon. Actually the
root filesystem can be a cdrom (live cd), nfs (network boot), zip disk
(if you still got one), etc etc... My proposal doesn't break any
existing themes and only themes that supplies the new icon -root,
-filesystem or what we end up calling it will see the change.

DanRabbit used the gnome-removable as base for the icon and I think its
good enough. See attached screenshot.

mac_v, I'll see if I can discuss this with nautilus devs and see what
solution they would like to see. Yes, they can make exceptions but I
don't think they sees this that important (but I did ask in the bug
upstream).

** Attachment added: Screenshot of Computer with ubuntu logo on filesystem
   http://launchpadlibrarian.net/31741977/fs-ubuntu.png

-- 
Place an Ubuntu icon/emblem on the system partition
https://bugs.launchpad.net/bugs/301035
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 301552] Re: in trash: show delete-date

2009-09-13 Thread Marcus Carlson
I've made some progress. At least the date shows up the in the column.
Next I'll have to figure out how to only show this column when in
trash:///

** Attachment added: WIP
   http://launchpadlibrarian.net/31759573/trash-deleted.png

-- 
in trash: show delete-date 
https://bugs.launchpad.net/bugs/301552
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 301035] Re: Place an Ubuntu icon/emblem on the system partition

2009-09-12 Thread Marcus Carlson
Actually this is not a nautilus bug, it's gvfs.

In daemon/gvfsbackendcomputer.c around line 522 we have 
  file-display_name = g_strdup (_(Filesystem));
  file-icon = g_themed_icon_new (drive-harddisk);
  file-root = g_file_new_for_path (/);

I think just changing drive-harddisk to drive-harddisk-dist and
providing an icon would do it.

-- 
Place an Ubuntu icon/emblem on the system partition
https://bugs.launchpad.net/bugs/301035
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 301035] Re: Place an Ubuntu icon/emblem on the system partition

2009-09-12 Thread Marcus Carlson
Discussed with DanRabbit in #ayatana we suggest the naming would be
drive-harddisk-root to be able to use the
g_themed_icon_new_with_default_fallbacks () function.

Then I saw the progress in bug [1] that's using the distributor-logo,
start-here, drive-harddisk order to get the icon. (And it's also
more complete as it also got patches for nautilus)

However, DanRabbit created an icon in the humanity icon set and it's
added to bzr in devices/48/drive-harddisk-root.

So, everything is ready to be packaged for karmic but we'll have to go
with patches as upstream is in ui freeze.

[1] https://bugzilla.gnome.org/show_bug.cgi?id=586488

-- 
Place an Ubuntu icon/emblem on the system partition
https://bugs.launchpad.net/bugs/301035
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 425166] Re: Nautilus *.txt file behaviour

2009-09-09 Thread Marcus Carlson
mac_v, only files with mime type of text/plain are handled.

-- 
Nautilus *.txt file behaviour
https://bugs.launchpad.net/bugs/425166
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 389926] Re: Nautilus browser's pathbar doesn't display the entire path, even when it can

2009-09-07 Thread Marcus Carlson
I vote against doing this. There's seldom a use to go up from the home
directory and mostly things are write protected there anyway. I'd prefer
to use the space to display folders in the home directory instead (yeah,
I know we could display / home first and then remove it when space is
limited but that will make a jumpy behavior).

-- 
Nautilus browser's pathbar doesn't display the entire path, even when it can
https://bugs.launchpad.net/bugs/389926
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 425166] Re: Nautilus *.txt file behaviour

2009-09-07 Thread Marcus Carlson
I think this is an issue with how we mount NTFS partitions rather then
nautilus.

Anyway I've included a patch that changes the default behavior to
display instead of ask.

** Attachment added: nautilus_text.patch
   http://launchpadlibrarian.net/31456117/nautilus_text.patch

-- 
Nautilus *.txt file behaviour
https://bugs.launchpad.net/bugs/425166
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 390724] Re: Back button (most used) in Nautilus smaller than rest

2009-09-05 Thread Marcus Carlson
** Changed in: hundredpapercuts
 Assignee: Marcus Carlson (0-launchpad-mejlamej-nu) = (unassigned)

-- 
Back button (most used) in Nautilus smaller than rest
https://bugs.launchpad.net/bugs/390724
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 407621] Re: (design decision) Icons missing from context menu , dialogue buttons , firefox bookmark favicons

2009-08-27 Thread Marcus Carlson
 at least nautilus should have an option that reads: Enable Menu
icons.

Why? To make nautilus NOT look like the rest of the desktop?

-- 
(design decision) Icons missing from context menu , dialogue buttons , firefox 
bookmark favicons
https://bugs.launchpad.net/bugs/407621
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 399031] Re: some applets are not draggble with mouse middle click

2009-08-26 Thread Marcus Carlson
As vuntz posted upstream, the issue can be in gtk+. Could anyone try
gnome-panel with gtk+ 2.16 instead of 2.17 and see if it's still an
issue.

-- 
some applets are not draggble with mouse middle click
https://bugs.launchpad.net/bugs/399031
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 399031] Re: some applets are not draggble with mouse middle click

2009-08-26 Thread Marcus Carlson
Update; this is now fixed in gtk master.

-- 
some applets are not draggble with mouse middle click
https://bugs.launchpad.net/bugs/399031
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 399031] Re: some applets are not draggble with mouse middle click

2009-08-25 Thread Marcus Carlson
I can also confirm this and as I posted in [1] I think adding a !
around line 2216 in panel-widget.c seems to fix the issue.

 event_time = event-time;
-if (event-send_event)
+if (!event-send_event)
 event_time = GDK_CURRENT_TIME;

[1] http://bugzilla.gnome.org/show_bug.cgi?id=114160

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

-- 
some applets are not draggble with mouse middle click
https://bugs.launchpad.net/bugs/399031
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 39328] Re: Disable scrolling on window list to flip through windows

2009-08-23 Thread Marcus Carlson
oliwek, try this (haven't tried it myself so you might have to improvise
a bit ;-) )

First we need to build libwnck and install libwnck

# cd
# mkdir temp
# cd temp
# apt-get build-dep libwnck
# apt-get source libwnck
# cd libwnck-2.26.0
# cp /path/to/10_wnck_scroll_enabled.patch debian/patches/
# dpkg-buildpackage -rfakeroot -b -tc
# sudo dpkg -i ../libwnck*.deb

Then we need to build and install gnome-panel

# cd
# cd temp
# apt-get build-dep gnome-panel
# apt-get source gnome-panel
# cd libwnck-2.26.0
# cp /path/to/scroll_gui.patch debian/patches/30_scroll_gui.patch (from 
http://bugzilla-attachments.gnome.org/attachment.cgi?id=138627)
edit debian/patches/series (eg with nano) and add a line with 
30_scroll_gui.patch after 28_prefer_lvds_monitor.patch
# dpkg-buildpackage -rfakeroot -b -tc
# sudo dpkg -i ../*panel*.deb

Kill gnome-panel (or relogin) and hopefully things will work, if they
don't, comment here and I'll see if I can fix a PPA for this.

-- 
Disable scrolling on window list to flip through windows
https://bugs.launchpad.net/bugs/39328
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a direct subscriber.

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


[Bug 39328] Re: Disable scrolling on window list to flip through windows

2009-08-23 Thread Marcus Carlson
oliwek, I forgot to say that if you do sudo apt-get update  sudo apt-
get upgrade your special package will be removed and the ubuntu package
will be installed instead - could be good to know if things don't work
out as they should :)

-- 
Disable scrolling on window list to flip through windows
https://bugs.launchpad.net/bugs/39328
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a direct subscriber.

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


[Bug 39328] Re: Disable scrolling on window list to flip through windows

2009-08-23 Thread Marcus Carlson
komputes, you mean like how I've implemented this in the patch? See how
it currently looks here
http://launchpadlibrarian.net/28828672/scroll_gui.png

-- 
Disable scrolling on window list to flip through windows
https://bugs.launchpad.net/bugs/39328
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a direct subscriber.

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


[Bug 39328] Re: Disable scrolling on window list to flip through windows

2009-08-23 Thread Marcus Carlson
Upstream said it should be on by default but that doesn't mean Ubuntu
could change the default via gconf schemas.

-- 
Disable scrolling on window list to flip through windows
https://bugs.launchpad.net/bugs/39328
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a direct subscriber.

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


[Bug 39328] Re: Disable scrolling on window list to flip through windows

2009-08-23 Thread Marcus Carlson
oliwek, sorry, my mistake. This

# apt-get source gnome-panel
# cd libwnck-2.26.0
# cp /path/to/scroll_gui.patch debian/patches/30_scroll_gui.patch (from 
http://bugzilla-attachments.gnome.org/attachment.cgi?id=138627)

Should be

# apt-get source gnome-panel
# cd gnome-panel-2.26.0 -- CORRECT
# cp /path/to/scroll_gui.patch debian/patches/30_scroll_gui.patch (from 
http://bugzilla-attachments.gnome.org/attachment.cgi?id=138627)

Also note that it's two different patches, one for libwnck and one for
gnome-panel.

-- 
Disable scrolling on window list to flip through windows
https://bugs.launchpad.net/bugs/39328
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a direct subscriber.

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


[Bug 39328] Re: Disable scrolling on window list to flip through windows

2009-08-23 Thread Marcus Carlson
oliwek, not really sure what you mean but desktop (disabling) scrolling
and (enabling / disabling) workspace switcher scrolling is two other
bugs.

-- 
Disable scrolling on window list to flip through windows
https://bugs.launchpad.net/bugs/39328
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a direct subscriber.

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


[Bug 39328] Re: Disable scrolling on window list to flip through windows

2009-08-23 Thread Marcus Carlson
oliwek, I'm not sure either as that belongs to compiz land...

-- 
Disable scrolling on window list to flip through windows
https://bugs.launchpad.net/bugs/39328
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a direct subscriber.

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


[Bug 387796] Re: Display application icons for Open With entries in the context-menu

2009-08-21 Thread Marcus Carlson
This should be fixed and committed in
http://bugzilla.gnome.org/show_bug.cgi?id=590647

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

-- 
Display application icons for Open With entries in the context-menu
https://bugs.launchpad.net/bugs/387796
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 174317] Re: Recent Documents needs 'open containing folder' option

2009-08-16 Thread Marcus Carlson
A first patch is posted upstream. If you're a developer, you are more
than welcome to take a look at it and help me hide the main menu after
you've selected an item from the context menu ;-)

-- 
Recent Documents needs 'open containing folder' option
https://bugs.launchpad.net/bugs/174317
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


  1   2   >