mirror of
https://github.com/greenshot/greenshot
synced 2025-07-14 17:13:44 -07:00
Moved the resize function to its own button, directly under the rotate effects.
This commit is contained in:
parent
aced477cef
commit
d0f934aa58
4 changed files with 20 additions and 13 deletions
|
@ -175,7 +175,7 @@ namespace Greenshot {
|
|||
|
||||
obfuscateModeButton.DropDownItemClicked += FilterPresetDropDownItemClicked;
|
||||
highlightModeButton.DropDownItemClicked += FilterPresetDropDownItemClicked;
|
||||
|
||||
|
||||
toolbarButtons = new[] { btnCursor, btnRect, btnEllipse, btnText, btnLine, btnArrow, btnFreehand, btnHighlight, btnObfuscate, btnCrop, btnStepLabel, btnSpeechBubble };
|
||||
//toolbarDropDownButtons = new ToolStripDropDownButton[]{btnBlur, btnPixeliate, btnTextHighlighter, btnAreaHighlighter, btnMagnifier};
|
||||
|
||||
|
@ -1229,11 +1229,11 @@ namespace Greenshot {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Currently unused
|
||||
/// Open the resize settings from, and resize if ok was pressed
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
void ResizeToolStripMenuItemClick(object sender, EventArgs e) {
|
||||
void BtnResizeClick(object sender, EventArgs e) {
|
||||
ResizeEffect resizeEffect = new ResizeEffect(surface.Image.Width, surface.Image.Height, true);
|
||||
// TODO: Use the Resize SettingsForm to make it possible to change the default values
|
||||
DialogResult result = new ResizeSettingsForm(resizeEffect).ShowDialog(this);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue