@@ -19,7 +19,6 @@ struct WelcomeView {
1919 QPushButton* pbopen;
2020 QPushButton* pbsettings;
2121 QPushButton* pbabout;
22- QToolButton* tbtnopenhome;
2322 QToolButton* tbtnopengithub;
2423 QToolButton* tbtnopendiscord;
2524 QToolButton* tbtnopenx;
@@ -93,20 +92,17 @@ struct WelcomeView {
9392 auto * grid = new QGridLayout ();
9493 grid->setSpacing (8 );
9594
96- this ->tbtnopenhome = new QToolButton (self);
97- grid->addWidget (this ->tbtnopenhome , 0 , 0 , 1 , 1 );
98-
9995 this ->tbtnopengithub = new QToolButton (self);
100- grid->addWidget (this ->tbtnopengithub , 0 , 1 , 1 , 1 );
96+ grid->addWidget (this ->tbtnopengithub , 0 , 0 , 1 , 1 );
10197
10298 this ->tbtnopendiscord = new QToolButton (self);
103- grid->addWidget (this ->tbtnopendiscord , 0 , 2 , 1 , 1 );
99+ grid->addWidget (this ->tbtnopendiscord , 0 , 1 , 1 , 1 );
104100
105101 this ->tbtnopenx = new QToolButton (self);
106- grid->addWidget (this ->tbtnopenx , 0 , 3 , 1 , 1 );
102+ grid->addWidget (this ->tbtnopenx , 0 , 2 , 1 , 1 );
107103
108104 this ->tbtnopenmastodon = new QToolButton (self);
109- grid->addWidget (this ->tbtnopenmastodon , 0 , 4 , 1 , 1 );
105+ grid->addWidget (this ->tbtnopenmastodon , 0 , 3 , 1 , 1 );
110106
111107 hbox1->addLayout (grid);
112108 hbox1->addItem (new QSpacerItem (40 , 20 , QSizePolicy::Expanding,
0 commit comments