public ToolbarNotificationButton()
        {
            Hotkey = GlobalAction.ToggleNotifications;

            Add(countDisplay = new CountCircle
            {
                Alpha  = 0,
                Height = 16,
                RelativePositionAxes = Axes.Both,
                Origin   = Anchor.Centre,
                Position = new Vector2(0.7f, 0.25f),
            });
        }
        public ToolbarNotificationButton()
        {
            Icon        = FontAwesome.Solid.Bars;
            TooltipMain = "Notifications";
            TooltipSub  = "Waiting for 'ya";

            Add(countDisplay = new CountCircle
            {
                Alpha  = 0,
                Height = 16,
                RelativePositionAxes = Axes.Both,
                Origin   = Anchor.Centre,
                Position = new Vector2(0.7f, 0.25f),
            });
        }