Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks
Which means that reduz' beloved style which we all became used to will now be changed automatically to remove the first empty line. This makes us lean closer to 1TBS (the one true brace style) instead of hybridating it with some Allman-inspired spacing. There's still the case of braces around single-statement blocks that needs to be addressed (but clang-format can't help with that, but clang-tidy may if we agree about it). Part of #33027.
This commit is contained in:
@@ -33,9 +33,7 @@
|
||||
#include "servers/rendering_server.h"
|
||||
|
||||
void NinePatchRect::_notification(int p_what) {
|
||||
|
||||
if (p_what == NOTIFICATION_DRAW) {
|
||||
|
||||
if (texture.is_null())
|
||||
return;
|
||||
|
||||
@@ -50,11 +48,9 @@ void NinePatchRect::_notification(int p_what) {
|
||||
}
|
||||
|
||||
Size2 NinePatchRect::get_minimum_size() const {
|
||||
|
||||
return Size2(margin[MARGIN_LEFT] + margin[MARGIN_RIGHT], margin[MARGIN_TOP] + margin[MARGIN_BOTTOM]);
|
||||
}
|
||||
void NinePatchRect::_bind_methods() {
|
||||
|
||||
ClassDB::bind_method(D_METHOD("set_texture", "texture"), &NinePatchRect::set_texture);
|
||||
ClassDB::bind_method(D_METHOD("get_texture"), &NinePatchRect::get_texture);
|
||||
ClassDB::bind_method(D_METHOD("set_patch_margin", "margin", "value"), &NinePatchRect::set_patch_margin);
|
||||
@@ -89,7 +85,6 @@ void NinePatchRect::_bind_methods() {
|
||||
}
|
||||
|
||||
void NinePatchRect::set_texture(const Ref<Texture2D> &p_tex) {
|
||||
|
||||
if (texture == p_tex)
|
||||
return;
|
||||
texture = p_tex;
|
||||
@@ -104,12 +99,10 @@ void NinePatchRect::set_texture(const Ref<Texture2D> &p_tex) {
|
||||
}
|
||||
|
||||
Ref<Texture2D> NinePatchRect::get_texture() const {
|
||||
|
||||
return texture;
|
||||
}
|
||||
|
||||
void NinePatchRect::set_patch_margin(Margin p_margin, int p_size) {
|
||||
|
||||
ERR_FAIL_INDEX((int)p_margin, 4);
|
||||
margin[p_margin] = p_size;
|
||||
update();
|
||||
@@ -131,13 +124,11 @@ void NinePatchRect::set_patch_margin(Margin p_margin, int p_size) {
|
||||
}
|
||||
|
||||
int NinePatchRect::get_patch_margin(Margin p_margin) const {
|
||||
|
||||
ERR_FAIL_INDEX_V((int)p_margin, 4, 0);
|
||||
return margin[p_margin];
|
||||
}
|
||||
|
||||
void NinePatchRect::set_region_rect(const Rect2 &p_region_rect) {
|
||||
|
||||
if (region_rect == p_region_rect)
|
||||
return;
|
||||
|
||||
@@ -148,18 +139,15 @@ void NinePatchRect::set_region_rect(const Rect2 &p_region_rect) {
|
||||
}
|
||||
|
||||
Rect2 NinePatchRect::get_region_rect() const {
|
||||
|
||||
return region_rect;
|
||||
}
|
||||
|
||||
void NinePatchRect::set_draw_center(bool p_enabled) {
|
||||
|
||||
draw_center = p_enabled;
|
||||
update();
|
||||
}
|
||||
|
||||
bool NinePatchRect::is_draw_center_enabled() const {
|
||||
|
||||
return draw_center;
|
||||
}
|
||||
|
||||
@@ -173,18 +161,15 @@ NinePatchRect::AxisStretchMode NinePatchRect::get_h_axis_stretch_mode() const {
|
||||
}
|
||||
|
||||
void NinePatchRect::set_v_axis_stretch_mode(AxisStretchMode p_mode) {
|
||||
|
||||
axis_v = p_mode;
|
||||
update();
|
||||
}
|
||||
|
||||
NinePatchRect::AxisStretchMode NinePatchRect::get_v_axis_stretch_mode() const {
|
||||
|
||||
return axis_v;
|
||||
}
|
||||
|
||||
NinePatchRect::NinePatchRect() {
|
||||
|
||||
margin[MARGIN_LEFT] = 0;
|
||||
margin[MARGIN_RIGHT] = 0;
|
||||
margin[MARGIN_BOTTOM] = 0;
|
||||
|
||||
Reference in New Issue
Block a user