mirror of
https://github.com/google/blockly.git
synced 2026-01-04 15:40:08 +01:00
feat: made the method isDragTowardWorkspace non private (#7529)
* removed internal from horizontal and vertical flyout * feat : made the method isDragTowardWorkspace non private * feat : made the method isDragTowardWorkspace non private --------- Co-authored-by: Ramya Non-IU <ramyaram2092@outlook.com>
This commit is contained in:
@@ -306,7 +306,6 @@ export class HorizontalFlyout extends Flyout {
|
||||
* @param currentDragDeltaXY How far the pointer has moved from the position
|
||||
* at mouse down, in pixel units.
|
||||
* @returns True if the drag is toward the workspace.
|
||||
* @internal
|
||||
*/
|
||||
override isDragTowardWorkspace(currentDragDeltaXY: Coordinate): boolean {
|
||||
const dx = currentDragDeltaXY.x;
|
||||
|
||||
@@ -274,7 +274,6 @@ export class VerticalFlyout extends Flyout {
|
||||
* @param currentDragDeltaXY How far the pointer has moved from the position
|
||||
* at mouse down, in pixel units.
|
||||
* @returns True if the drag is toward the workspace.
|
||||
* @internal
|
||||
*/
|
||||
override isDragTowardWorkspace(currentDragDeltaXY: Coordinate): boolean {
|
||||
const dx = currentDragDeltaXY.x;
|
||||
|
||||
Reference in New Issue
Block a user