~ubuntu-branches/debian/squeeze/f-spot/squeeze

« back to all changes in this revision

Viewing changes to src/TextureDisplay.cs

  • Committer: Bazaar Package Importer
  • Author(s): Iain Lane, Mirco Bauer, Iain Lane
  • Date: 2009-02-07 20:23:32 UTC
  • mfrom: (1.1.18 upstream)
  • Revision ID: james.westby@ubuntu.com-20090207202332-oc93rfjo1st0571s
Tags: 0.5.0.3-2
[ Mirco Bauer]
* Upload to unstable.
* debian/control:
  + Lowered GNOME# build-deps to 2.0 ABI as that transition didn't happen
    yet in unstable.

[ Iain Lane ]
* debian/patches/svn-r4545_locales-import.dpatch: Patch backported from SVN
  trunk revision 4545 - initialize the translation catalog earlier (LP: #293305)
  (Closes: #514457). Thanks to Florian Heinle for finding the patch and to
  Chris Coulson for preparing the update.
* debian/control: Build-depend on libmono-dev (>= 1.2.4) to match configure
  checks.
* debian/rules: Pass CSC=/usr/bin/csc to configure for gio-sharp to fix FTBFS

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
                        flip.RunWhenStarted = false;
99
99
                }
100
100
 
 
101
                public override void Dispose ()
 
102
                {
 
103
                        if (glx != null)
 
104
                                glx.Destroy ();
 
105
                }
 
106
 
101
107
                GlTransition [] transitions = new GlTransition []
102
108
                        {
103
109
                                new GlTransition.Dissolve (),
158
164
                        try {
159
165
                                using (ImageFile img = ImageFile.Create (item.Current.DefaultVersionUri)) {
160
166
                                        using (Gdk.Pixbuf pixbuf = img.Load ()) {
161
 
                                                tex = new Texture (pixbuf);
 
167
                                                FSpot.ColorManagement.ApplyScreenProfile (pixbuf, img.GetProfile ());
 
168
                                                tex = new Texture (pixbuf);
162
169
                                        }
163
170
                                }
164
171
                        } catch (Exception) {