From b5df8a7ac51fa356200ac7eab1eb58a70e68b7b8 Mon Sep 17 00:00:00 2001 From: Manolis Papadeas <35376950+OverloadedOrama@users.noreply.github.com> Date: Thu, 29 Oct 2020 16:46:58 +0200 Subject: [PATCH] Move the notifications a bit to the left --- CHANGELOG.md | 6 +++--- src/Autoload/Global.gd | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ab9b7f17..eb37143fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). All the dates are in YYYY-MM-DD format.

-## Unreleased +## [v0.8.2] - Unreleased This update has been brought to you by the contributions of: PinyaColada, Rémi Verschelde (akien-mga), dasimonde @@ -23,8 +23,8 @@ PinyaColada, Rémi Verschelde (akien-mga), dasimonde ### Fixed - Made .pxo saving safer. In case of a crash while parsing JSON data, the old .pxo file, if it exists, will no longer be overwritten and corrupted. -- Fixed issue where the user could grab, and could not let go of, the focus of guides even when they were invisible. -- Fixed issues where fully transparent color could not be picked. One of these cases was ([#364](https://github.com/Orama-Interactive/Pixelorama/issues/364)). +- Fixed issue where the user could grab and could not let go of the focus of guides even when they were invisible. +- Fixed issues where fully transparent color could not be picked. One of these cases was [#364](https://github.com/Orama-Interactive/Pixelorama/issues/364). - Fixed "Export" option in the File menu not working properly when switching between projects, and not remembering the directory path and file name, if the project is an imported image and the tabs were switched. - Fixed Chinese and Korean characters not displaying properly in the Splash dialog and the About dialog. - Fixed crash when importing an incorrectly formatted GIMP Color Palette file. ([#363](https://github.com/Orama-Interactive/Pixelorama/issues/363)) diff --git a/src/Autoload/Global.gd b/src/Autoload/Global.gd index b58a13cbb..3d90c27ba 100644 --- a/src/Autoload/Global.gd +++ b/src/Autoload/Global.gd @@ -294,7 +294,7 @@ func find_node_by_name(root : Node, node_name : String) -> Node: func notification_label(text : String) -> void: var notification : Label = load("res://src/UI/NotificationLabel.tscn").instance() notification.text = tr(text) - notification.rect_position = Vector2(240, OS.window_size.y - animation_timeline.rect_size.y - 20) + notification.rect_position = Vector2(70, OS.window_size.y - animation_timeline.rect_size.y - 20) notification.theme = control.theme get_tree().get_root().add_child(notification)