-
Notifications
You must be signed in to change notification settings - Fork 10k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Editor] Add a new base class to allow to add a drawing in the SVG layer. #19093
base: master
Are you sure you want to change the base?
Conversation
/botio-linux preview |
From: Bot.io (Linux m4)ReceivedCommand cmd_preview from @calixteman received. Current queue size: 0 Live output at: http://54.241.84.105:8877/f45378cd6117b14/output.txt |
/botio test |
From: Bot.io (Windows)ReceivedCommand cmd_test from @calixteman received. Current queue size: 0 Live output at: http://54.193.163.58:8877/324b95df703677d/output.txt |
From: Bot.io (Linux m4)ReceivedCommand cmd_test from @calixteman received. Current queue size: 1 Live output at: http://54.241.84.105:8877/37aece65741ede8/output.txt |
From: Bot.io (Linux m4)SuccessFull output at http://54.241.84.105:8877/f45378cd6117b14/output.txt Total script time: 0.98 mins Published |
From: Bot.io (Linux m4)FailedFull output at http://54.241.84.105:8877/37aece65741ede8/output.txt Total script time: 34.68 mins
Image differences available at: http://54.241.84.105:8877/37aece65741ede8/reftest-analyzer.html#web=eq.log |
1e03740
to
5ccc04e
Compare
From: Bot.io (Windows)FailedFull output at http://54.193.163.58:8877/324b95df703677d/output.txt Total script time: 50.74 mins
|
/botio integrationtest |
From: Bot.io (Linux m4)ReceivedCommand cmd_integrationtest from @calixteman received. Current queue size: 0 Live output at: http://54.241.84.105:8877/e8b69f2a0f9b217/output.txt |
From: Bot.io (Windows)ReceivedCommand cmd_integrationtest from @calixteman received. Current queue size: 0 Live output at: http://54.193.163.58:8877/b80a2a0ba469254/output.txt |
From: Bot.io (Linux m4)SuccessFull output at http://54.241.84.105:8877/e8b69f2a0f9b217/output.txt Total script time: 8.86 mins
|
From: Bot.io (Windows)SuccessFull output at http://54.193.163.58:8877/b80a2a0ba469254/output.txt Total script time: 19.12 mins
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A couple of quick observations based on comparing master
against the preview:
-
The Ink-editor can now be resized not just in the corners, but also along the edges; see the red circles in screen-shots below.
Was this an intentional change, since the PR description (and commit message) doesn't mention it? -
The focus outline behaves subtly different, since it now "overlays" and hides the very edges of the drawing; note e.g. the red rectangles in the screen-shots below.
Again, it's not clear to me if this was intentionally or accidentally changed?
4aacbb0
to
04992d4
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Leaving a few more minor comments, however this patch is a bit too large to review everything in detail and we'll probably have to trust that the test coverage is sufficient to catch outright bugs.
…yer. This patch makes a clear separation between the way to draw and the editing stuff. It adds a class DrawEditor which should be extended in order to create new drawing tools. As an example, the ink tool has been rewritten in order to use it.
04992d4
to
02a7a8b
Compare
This patch makes a clear separation between the way to draw and the editing stuff. It adds a class DrawEditor which should be extended in order to create new drawing tools.
As an example, the ink tool has been rewritten in order to use it.