From e34661999f9cb55c192f2321a0b99ee2bed0c4d3 Mon Sep 17 00:00:00 2001 From: kobewi Date: Sun, 3 Apr 2022 19:40:14 +0200 Subject: [PATCH] Mention how to add dragging for SpinBox's LineEdit (cherry picked from commit c8de26530727afb4b60f15b412f1f9a7f2fcb104) --- doc/classes/SpinBox.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/classes/SpinBox.xml b/doc/classes/SpinBox.xml index 085a7f873..f803a2fb2 100644 --- a/doc/classes/SpinBox.xml +++ b/doc/classes/SpinBox.xml @@ -16,6 +16,7 @@ The above code will create a [SpinBox], disable context menu on it and set the text alignment to right. See [Range] class for more options over the [SpinBox]. [b]Note:[/b] [SpinBox] relies on an underlying [LineEdit] node. To theme a [SpinBox]'s background, add theme items for [LineEdit] and customize them. + [b]Note:[/b] If you want to implement drag and drop for the underlying [LineEdit], you can use [method Control.set_drag_forwarding] on the node returned by [method get_line_edit].