[Bug 508632] Re: [FFe] Toggle button for Nautilus location field gone

2011-05-30 Thread Nandox7
@Graham, right-click on the toolbar area. You can later add the Edit
location icon.

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

Title:
  [FFe] Toggle button for Nautilus location field gone

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


[Bug 124543] Re: assembly syntax highlighting

2010-08-20 Thread Nandox7
Just used the same .lang file. Perfect! Thanks!

-- 
assembly syntax highlighting 
https://bugs.launchpad.net/bugs/124543
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 613822] [NEW] Enabling Show position of pointer when the control key is pressed prevents multiple selection usign the ctrl key. isnide file-roller.

2010-08-05 Thread Nandox7
Public bug reported:

Binary package hint: gnome-control-center

Description:Ubuntu 10.04 LTS
Release:10.04

file-roller:
  Installed: 2.30.1.1-0ubuntu2

gnome-control-center:
  Installed: 1:2.30.1-0ubuntu1

[Description:]
After enabling the feature Show position of pointer when the control key is 
pressed by going to
System  Preferences  Mouse the usage of the control key to perform multiple 
selections of 
objects (files or folders) inside file-roller can't be performed anymore.

[Example:]
With this feature enabled open a .zip file that contains multiple files inside.
While pressing ctrl and tryign to select multiple files doesn't work.


If the feature is disable the above example works without problems.

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

-- 
Enabling Show position of pointer when the control key is pressed prevents 
multiple selection usign the ctrl key. isnide file-roller.
https://bugs.launchpad.net/bugs/613822
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in ubuntu.

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


[Bug 613822] Re: Enabling Show position of pointer when the control key is pressed prevents multiple selection usign the ctrl key. inside file-roller.

2010-08-05 Thread Nandox7
** Summary changed:

- Enabling Show position of pointer when the control key is pressed prevents 
multiple selection usign the ctrl key. isnide file-roller.
+ Enabling Show position of pointer when the control key is pressed prevents 
multiple selection usign the ctrl key. inside file-roller.

** Summary changed:

- Enabling Show position of pointer when the control key is pressed prevents 
multiple selection usign the ctrl key. inside file-roller.
+ Enabling Show position of pointer when the control key is pressed prevents 
multiple selection usign the ctrl key inside file-roller.

-- 
Enabling Show position of pointer when the control key is pressed prevents 
multiple selection usign the ctrl key inside file-roller.
https://bugs.launchpad.net/bugs/613822
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in ubuntu.

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


[Bug 571038] Re: palimpsest

2010-07-19 Thread Nandox7
I seem to overlooked a detail above.

From Pacho Ramos partition list:

--
# fdisk -l
omitting empty partition (5)  --- HERE

(...)
---

So even fdisk is complaning about error in the partitions.
Combined with your example it seems to further confirm that an error in the 
partition tables causes this.

Maybe using sfdisk instead to get the partitions definitions (sfdisk -d 
/dev/device  part.list), as fdisk seems to fails
to get them.

-- 
palimpsest
https://bugs.launchpad.net/bugs/571038
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-disk-utility in ubuntu.

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


[Bug 571038] Re: palimpsest

2010-07-13 Thread Nandox7
Can you get some details from the devices and partitions that you have
on your system?

Something like:
$sudo fdisk -l

-- 
palimpsest
https://bugs.launchpad.net/bugs/571038
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-disk-utility in ubuntu.

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


[Bug 571038] Re: palimpsest

2010-07-13 Thread Nandox7
The error comes from here:
gdu-pool.c (libgdu0)
--
(...)
static void
device_recurse (GduPool *pool, GduDevice *device, GList **ret, guint depth)
{
gboolean insert_after;

/* cycle detection */
g_assert (depth  100);  --- HERE

insert_after = FALSE;

if (gdu_device_is_partition (device)) {
const gchar *partition_table_object_path;
GduDevice *partition_table;
(...)
---


It goes over the partition tables and starts to parse them, increments 'depth' 
on several occasions:
---
(...)
/* we want the partition table to come before any partition */
if (partition_table != NULL)
device_recurse (pool, partition_table, ret, depth + 1);
(...)
or
(...)
   /* logical MSDOS partition, ensure that the extended 
partition comes before us */
extended_partition = find_extended_partition (pool, 
partition_table_object_path);
if (extended_partition != NULL) {
device_recurse (pool, extended_partition, ret, 
depth + 1);
}

(...)
---

So it seem that somehow while reading and composing the tree it exceeds the 100 
levels.
I'd say the next steps now would be to determine what device is triggering it 
and determine why.

But again it's the first time I'm looking into this code so I may be
saying a big mistake. :)

-- 
palimpsest
https://bugs.launchpad.net/bugs/571038
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-disk-utility in ubuntu.

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


[Bug 591500] Re: Gnome Screensaver Doesn't Fade Out

2010-06-15 Thread Nandox7
Hey,

Because I like the fade effect as well I made a patch for it.

It creates a new gconf key called fa_on_lock_enabled that toggles the fade 
effect.
By default is FALSE but when TRUE it enables it.

This seems a better approach, if there is any interest in it I can
improve it.

I'm attaching the patch file in here ready to be placed in debian/patches 
folder and to 
build the package.


** Patch added: Patch to create gconf key to toggle fade effect.
   http://launchpadlibrarian.net/50365658/17_toggle_fade_on_lock_in_gconf.patch

-- 
Gnome Screensaver Doesn't Fade Out
https://bugs.launchpad.net/bugs/591500
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-screensaver in ubuntu.

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


[Bug 593201] Re: Can't select file on file browser popup after choosing to sort by column Modified

2010-06-13 Thread Nandox7
Seems like this one needs to be re-assigned to the gtk+2.0 package.

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

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

** Tags added: gtk+2.0
** Tags removed: nautilus

-- 
Can't select file on file browser popup after choosing to sort by column 
Modified
https://bugs.launchpad.net/bugs/593201
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 593201] [NEW] Can't select file on file browser popup after choosing to sort by column Modified

2010-06-12 Thread Nandox7
Public bug reported:

Binary package hint: nautilus

Found so far in Lucid 10.4 version.

To reproduce it:

1. Select an icon from the desktop.
2. Right click and select properties option.
3. Press current icon in order to choose a new icon.
4. Navigate to a folder containing several image files using the file browser 
popup that just showed up
5. Press the column Modified to sort the files by that type.
6. Try to select a file from the list and it's not possible, the selected file 
always remain the file that was previously selected before sorting by 
Modified column.


I've noticed and I can reproduce always this behavior while performing the 
steps above or as well while trying to select files to upload while using 
Firefox.

Note: If i after select another column to sort the files (Size or Name)
it allows again to select a file.

$dpkg -l nautilus
ii  nautilus1:2.30.1-0ubuntu1   file manager and 
graphical shell for GNOME

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


** Tags: nautilus

-- 
Can't select file on file browser popup after choosing to sort by column 
Modified
https://bugs.launchpad.net/bugs/593201
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 591500] Re: Gnome Screensaver Doesn't Fade Out

2010-06-09 Thread Nandox7
Is not fading because it's now disabled by default on the lock event:

  * debian/patches/14_no_fade_on_user_switch.patch:
- Disable fade on locking to work around LP: #546578 and prevent
  the screen remaining blank after user switching. The screensaver
  will still fade-in on idle though 

If you haven't had problems before install the previous version, where
the lock on fade was still enabled.

-- 
Gnome Screensaver Doesn't Fade Out
https://bugs.launchpad.net/bugs/591500
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-screensaver in ubuntu.

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


[Bug 508632] Re: [FFe] Toggle button for Nautilus location field gone

2010-05-29 Thread Nandox7
@DLCBurggraaff: My apologies, it's the icon browser not the file browser.
I was referring to the process when we go and change the icon for a file/folder.

Better explained with an example:

[Location bar hidden]
http://www.ubuntu-pics.de/bild/72730/select_custom_icon_001_uktCfg.png

[Location bar exposed]
http://www.ubuntu-pics.de/bild/72731/select_custom_icon_002_P25erm.png

-- 
[FFe] Toggle button for Nautilus location field gone
https://bugs.launchpad.net/bugs/508632
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 508632] Re: [FFe] Toggle button for Nautilus location field gone

2010-05-28 Thread Nandox7
Well I was a bit annoyed with this as well until I found the CTRL+l.
Still the process is not consistent.

If you notice in the file browser popup there is still the icon to open the 
location bar.
That actually even behaves in a much more odd way, instead of converting the 
breadcrumbs to address bar it
actually creates a location bar under the breadcrumbs.

Honestly I'd rather have there a ugly icon than no icon at all.

-- 
[FFe] Toggle button for Nautilus location field gone
https://bugs.launchpad.net/bugs/508632
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 532633] Re: [light-theme] please revert the order of the window controls back to menu:minimize, maximize, close

2010-03-19 Thread Nandox7
Amazing, what a fuss just because it was decided to move some buttons to
a different side

This is a setting and not a hard coded feature... it can be changed by the user.
Let me guess all here complaining still have the default wallpaper, theme, 
login splash, ... you never changed nothing
from the default settings.

What is actually the problem when this setting can be easily changed?

-- 
[light-theme] please revert the order of the window controls back to 
menu:minimize,maximize,close
https://bugs.launchpad.net/bugs/532633
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 370999] Re: reports 0% until finished, also slowly burning at speed 0.3x or 0.5x

2009-08-28 Thread Nandox7
I kept doing some other tests with this, specially regarding the speed.
And the speed problem doesn't seem to be from Brasero but from growisofs or 
wodim.
Easily tested by calling growisofs directly, there is no change in the speed.

Some external links refer a problem with how the buffer works and how it
detects the available memory, but supposedly a fix for that was released
not long ago. Still, even passing params to define a size for the buffer
had little impact, i noticed a slight increase in speed.

Also i noticed a interesting report where someone stated that it might be using 
wrongly the burn-proof feature of the burners ending in poor quality burns and 
slowing down the process. Unfortunately all my DVD burners have burn-proof so 
it was impossible to try out with one without.
On the other hand I don't see growisofs outputting anything related to that, so 
I'm not sure if this can be a problem.

-- 
reports 0% until finished, also slowly burning at speed 0.3x or 0.5x
https://bugs.launchpad.net/bugs/370999
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 18250] Re: file-rollers progress bar does not indicate progress

2009-08-20 Thread Nandox7
I see the same happening when extracting one big RAR file.
The progress bar just keeps moving from one side to the other or after a while 
it stays half until the end.

I'd say that the ideal would be to have  a estimated time or percentage.

-- 
file-rollers progress bar does not indicate progress
https://bugs.launchpad.net/bugs/18250
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 370999] Re: reports 0% until finished, also slowly burning at speed 0.3x or 0.5x

2009-08-18 Thread Nandox7
As it is stated there the problem seems to be the plugin used.
I also had this problem, as it was using wodim to burn the iso instead of 
growisofs.
To remove wodim is not possible in a clean way as Brasero is marked to depend 
on it and it will be removed along with wodim.

But there is a quick and simple workaround to fix half of this problem.
Using Gnome Configuration Editor navigate too:

apps  brasero  config  priority

In there it list all the plugins found and their priority, by default
all are in 0 so Brasero chooses the one that fit the best.

Two things can be done here either disable the plugin in this case wodim and 
that is done by changing the value to '-1' or
to increase the priority of the one we want and i went for growisofs and in 
that case giving it a value higher than 0.

In my case I did both:

growisofs-burn = 1 (raises the priority forcing it to be choose)
wodim-burn = -1 (disables it)

This fixed my problem regarding the wrong percentage been showed as soon
as it reaches the 2GB mark as for the burning speed is still slow even
while using growisofs.

-- 
reports 0% until finished, also slowly burning at speed 0.3x or 0.5x
https://bugs.launchpad.net/bugs/370999
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 61786] Re: 'Create folder in here' context menu option for nautilus

2009-07-27 Thread Nandox7
The problem seems to be more related to the GTK object itlself.
Some other actions are also missing that are very helpfull.
For example as it is impossible to create a folder when in list mode it is also 
impossible to dragdrop to copy a file when also in list mode.
It always focus in a file or folder and targets the actions to the object 
focused. As example in windows only the filename or foldername area can receive 
focus all the remaining doesn't allowing the before mention actions to be 
performed.
This is bad because it transforms a simple folder creation into a annoying 
process.

-- 
'Create folder in here' context menu option for nautilus
https://bugs.launchpad.net/bugs/61786
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