FSpot.MainWindow.HandleRotate270Command C# (CSharp) Method

HandleRotate270Command() public method

public HandleRotate270Command ( object sender, EventArgs args ) : void
sender object
args System.EventArgs
return void
		public void HandleRotate270Command (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.Counterclockwise);
		}
MainWindow