]> git.pld-linux.org Git - packages/f-spot.git/blob - f-spot-fs.patch
- no longer required as we use external ndesk dbus implementation
[packages/f-spot.git] / f-spot-fs.patch
1 --- f-spot-0.2.2/src/MainWindow.cs      2006-10-06 02:23:08.000000000 +0100
2 +++ f-spot-0.2.2.new/src/MainWindow.cs  2006-11-20 04:55:56.000000000 +0000
3 @@ -1999,6 +1999,13 @@
4                 int active = Math.Max (ActiveIndex (), 0);
5                 if (fsview == null) {
6                         fsview = new FSpot.FullScreenView (query);
7 +
8 +                       Gdk.Screen screen = fsview.Screen;
9 +                       int monitor = screen.GetMonitorAtWindow (main_window.GdkWindow);
10 +                       Gdk.Rectangle bounds = screen.GetMonitorGeometry(monitor);
11 +                       fsview.Move(bounds.X, 0);
12 +                       fsview.SetDefaultSize(bounds.Width, bounds.Height);
13 +
14                         fsview.Destroyed += HandleFullScreenViewDestroy;
15              fsview.View.Item.Index = active;
16              ColorDialog.SwitchViews (fsview.View);
This page took 0.055305 seconds and 3 git commands to generate.