Navigation Menu

Skip to content

Commit

Permalink
Fix compiler error when using GTK# 2.12.9
Browse files Browse the repository at this point in the history
  • Loading branch information
cameronwhite committed May 4, 2013
1 parent f6ba8a5 commit 8929868
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Pinta.Core/HistoryItems/FinishPixelsHistoryItem.cs
Expand Up @@ -89,7 +89,7 @@ public override void Dispose ()
if (old_surface != null)
(old_surface as IDisposable).Dispose ();
if (old_selection_layer != null)
old_selection_layer.Dispose ();
(old_selection_layer as IDisposable).Dispose ();
}

public void TakeSnapshot ()
Expand Down

0 comments on commit 8929868

Please sign in to comment.