~ubuntu-branches/ubuntu/wily/docky/wily-proposed

« back to all changes in this revision

Viewing changes to Docky/Docky/Interface/DockWindow.cs

  • Committer: Bazaar Package Importer
  • Author(s): Rico Tzschichholz
  • Date: 2011-04-06 20:00:06 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20110406200006-0ajmm84j3oszaf1y
Tags: 2.0.13-1
* New upstream release 2.0.13 "Crossroads",
  changes include:
  + fix drawing with mono 2.10+
  + fix crash when drag/droping onto docky and nautilus isnt drawing
    desktop (LP: #574817)
  + fix nm docklet crashing docky on startup if nm isnt running
    (LP: #738955)
  + fix item-drop at the first place (LP: #708772)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2643
2643
                                } else {
2644
2644
                                        switch (Position) {
2645
2645
                                        case DockPosition.Top:
2646
 
                                                cr.SetSource (main_buffer.Internal, 0, 0 - HideOffset * DockHeight);
 
2646
                                                cr.SetSource (main_buffer.Internal, 0, -HideOffset * DockHeight);
2647
2647
                                                break;
2648
2648
                                        case DockPosition.Left:
2649
 
                                                cr.SetSource (main_buffer.Internal, 0 - HideOffset * DockHeight, 0);
 
2649
                                                cr.SetSource (main_buffer.Internal, -HideOffset * DockHeight, 0);
2650
2650
                                                break;
2651
2651
                                        case DockPosition.Right:
2652
2652
                                                cr.SetSource (main_buffer.Internal, HideOffset * DockHeight, 0);