FSpot.MainWindow.HandleRotate90Command C# (CSharp) Method

HandleRotate90Command() public method

public HandleRotate90Command ( object sender, EventArgs args ) : void
sender object
args System.EventArgs
return void
		public void HandleRotate90Command (object sender, EventArgs args)
		{
			// Don't steal characters from any text entries
			if (Window.Focus is Gtk.Entry && Gtk.Global.CurrentEvent is Gdk.EventKey) {
				Window.Focus.ProcessEvent (Gtk.Global.CurrentEvent);
				return;
			}

			RotateSelectedPictures (GetToplevel (sender), RotateDirection.Clockwise);
		}
MainWindow