ui: graph toggle button number position

Improved the position of the small number in the graph node toggle button for windows.
This commit is contained in:
Manuel Dobusch
2015-12-30 00:21:38 +01:00
parent afc2d1e6b5
commit 5af8d0f03f
10 changed files with 381 additions and 159 deletions
@@ -0,0 +1,20 @@
#ifndef MESSAGE_RESET_ZOOM_H
#define MESSAGE_RESET_ZOOM_H
#include "utility/messaging/Message.h"
class MessageResetZoom
: public Message<MessageResetZoom>
{
public:
MessageResetZoom()
{
}
static const std::string getStaticType()
{
return "MessageResetZoom";
}
};
#endif // MESSAGE_RESET_ZOOM_H