Public bug reported:

The folowing simple example code does not work in Ubuntu 13.04 (Raring):

using System;
using Gtk;

namespace Playground
{
        class MainClass
        {
                public static void Main (string[] args)
                {
                        Application.Init();
                        Window win = new Window(WindowType.Toplevel);
                        FileChooserButton b = new FileChooserButton("bla", 
FileChooserAction.SelectFolder);
                        b.SetCurrentFolder("/tmp");
                        win.Add(b);
                        win.ShowAll();
                        win.Destroyed += delegate { Application.Quit(); };
                        Application.Run();
                }
        }
}

The Method SetCurrentFolder() is ineffective. The same code works
perfectly fine in Ubuntu <= 12.10 and Debian 6.0/7.0.

** Affects: gtk-sharp2 (Ubuntu)
     Importance: Undecided
         Status: New

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

Title:
  SetCurrentFolder() for FileChooserButton in Gtk# does not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gtk-sharp2/+bug/1185015/+subscriptions

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

Reply via email to