mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-09-03 11:47:25 +00:00
Make the Text tool delete empty text layers when clicking away wth LMB (#2192)
Fix additions of layers when using left click
Fixes: 1327376421
This commit is contained in:
parent
3582126ded
commit
d692538736
3 changed files with 7 additions and 7 deletions
|
@ -433,8 +433,8 @@ impl EditorHandle {
|
|||
|
||||
/// A text box was committed
|
||||
#[wasm_bindgen(js_name = onChangeText)]
|
||||
pub fn on_change_text(&self, new_text: String, is_right_click: bool) -> Result<(), JsValue> {
|
||||
let message = TextToolMessage::TextChange { new_text, is_right_click };
|
||||
pub fn on_change_text(&self, new_text: String, is_left_or_right_click: bool) -> Result<(), JsValue> {
|
||||
let message = TextToolMessage::TextChange { new_text, is_left_or_right_click };
|
||||
self.dispatch(message);
|
||||
|
||||
Ok(())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue