Fixed SplitContainer showing the "resize" cursor when it shouldn't.

This commit is contained in:
Michael Alexsander Silva Dias
2017-12-20 13:55:03 -02:00
parent d81bd965b6
commit 274b3db0d9
2 changed files with 29 additions and 41 deletions

View File

@@ -88,7 +88,7 @@ class HSplitContainer : public SplitContainer {
public:
HSplitContainer() :
SplitContainer(false) { set_default_cursor_shape(CURSOR_HSPLIT); }
SplitContainer(false) {}
};
class VSplitContainer : public SplitContainer {
@@ -97,7 +97,7 @@ class VSplitContainer : public SplitContainer {
public:
VSplitContainer() :
SplitContainer(true) { set_default_cursor_shape(CURSOR_VSPLIT); }
SplitContainer(true) {}
};
#endif // SPLIT_CONTAINER_H