diff --git a/src/js/controller/help/02-controls.mjs b/src/js/controller/help/02-controls.mjs index 04c2d16d..74aeee70 100644 --- a/src/js/controller/help/02-controls.mjs +++ b/src/js/controller/help/02-controls.mjs @@ -28,7 +28,7 @@ class ControlsController extends MenuController { /** * @var int The height of the controls window */ - static controlsWindowHeight = 700; + static controlsWindowHeight = 800; /** * @var string The keyboard shortcut diff --git a/src/js/controller/system/03-installation.mjs b/src/js/controller/system/03-installation.mjs index 2f903995..db338a7b 100644 --- a/src/js/controller/system/03-installation.mjs +++ b/src/js/controller/system/03-installation.mjs @@ -235,7 +235,7 @@ class InstallationController extends MenuController { /** * @var int The height of the summary window */ - static summaryWindowHeight = 620; + static summaryWindowHeight = 960; /** * @var int The width of the manager window diff --git a/src/js/view/controls.mjs b/src/js/view/controls.mjs index bf124bbc..f3ea9174 100644 --- a/src/js/view/controls.mjs +++ b/src/js/view/controls.mjs @@ -19,7 +19,7 @@ class ControlsHelperView extends View { /** * @var string Text to show on mouseover */ - static helpText = "General
Middle-Mouse-Button
, or alternatively Ctrl+Left-Mouse-Button
or Alt+Left-Mouse-Button
(Option⌥+Left-Mouse-Button
on MacOS), and move the canvas around.Ctrl
when scrolling up/down to stop this behavior and instead perform the general behavior of zooming in/out.Left-Mouse-Button
to draw, or Alt+Left-Mouse-Button
to erase.Left-Mouse-Button
, hold shift
when you begin painting again to draw a straight line between the previous final and your current position using the current brush.Left-Mouse-Button
on an empty portion of the canvas to start selecting existing points with a rectangular selector. Hold shift
while doing this to add the selected points to your current selection, instead of replacing it. When you left-click on a point on the canvas, it will be grabbed and moved, optionally with shift as well to move all points at once. Left-clicking on a spline instead will select and move the entire spline.Alt+Left-Mouse-Button
on an empty section of the canvas to draw a new linear motion vector. Move your mouse and release it to draw a line between those points. When you use Alt
and left-click on a point instead of the canvas, the point will be deleted. Alt-left-clicking a spline will add a new point along the segment your mouse is over.Ctrl+Shift
and click the left-mouse-button anywhere on the canvas to rotate all selected points about their center.Delete
on your keyboard to delete them.Ctrl+C
on your keyboard to copy them. You must select at least two points on a spline for it to be copied.Ctrl
while left-clicking will resume the previous behavior of moving the canvas.Middle-Mouse-Button
, or alternatively Ctrl+Left-Mouse-Button
or Alt+Left-Mouse-Button
(Option⌥+Left-Mouse-Button
on MacOS), and move the canvas around.Ctrl
when scrolling up/down to stop this behavior and instead perform the general behavior of zooming in/out.Left-Mouse-Button
to draw, or Alt+Left-Mouse-Button
to erase.Left-Mouse-Button
, hold shift
when you begin painting again to draw a straight line between the previous final and your current position using the current brush.Left-Mouse-Button
on an empty portion of the canvas to start selecting existing points with a rectangular selector. Hold shift
while doing this to add the selected points to your current selection, instead of replacing it. When you left-click on a point on the canvas, it will be grabbed and moved, optionally with shift as well to move all points at once. Left-clicking on a spline instead will select and move the entire spline.Alt+Left-Mouse-Button
on an empty section of the canvas to draw a new linear motion vector. Move your mouse and release it to draw a line between those points. When you use Alt
and left-click on a point instead of the canvas, the point will be deleted. Alt-left-clicking a spline will add a new point along the segment your mouse is over.Ctrl+Shift
and click the left-mouse-button anywhere on the canvas to rotate all selected points about their center.Delete
on your keyboard to delete them.Ctrl+C
on your keyboard to copy them. You must select at least two points on a spline for it to be copied.Ctrl
while left-clicking will resume the previous behavior of moving the canvas.Ctrl+Z
to undo an action, and Ctrl+Y
to redo an action after undoing it.