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

« back to all changes in this revision

Viewing changes to Docky/Docky/Menus/DockMenu.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:
514
514
                                switch (Orientation) {
515
515
                                case DockPosition.Top:
516
516
                                        cr.Scale (1, -1);
517
 
                                        cr.Translate (0, 0 - background_buffer.Height);
 
517
                                        cr.Translate (0, -background_buffer.Height);
518
518
                                        break;
519
519
                                case DockPosition.Left:
520
520
                                        cr.Rotate (Math.PI * .5);
521
 
                                        cr.Translate (0, 0 - background_buffer.Height);
 
521
                                        cr.Translate (0, -background_buffer.Height);
522
522
                                        break;
523
523
                                case DockPosition.Right:
524
524
                                        cr.Rotate (Math.PI * -0.5);
525
 
                                        cr.Translate (0 - background_buffer.Width, 0);
 
525
                                        cr.Translate (-background_buffer.Width, 0);
526
526
                                        break;
527
527
                                }
528
528