Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BornAgain
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
BornAgain
Merge requests
!33
GUI: rm update checks (broken since long)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
GUI: rm update checks (broken since long)
noUpdateChecks
into
develop
Overview
0
Commits
5
Pipelines
2
Changes
13
Merged
Wuttke, Joachim
requested to merge
noUpdateChecks
into
develop
3 years ago
Overview
0
Commits
5
Pipelines
2
Changes
13
Expand
0
0
Merge request reports
Compare
develop
version 1
7ec21800
3 years ago
develop (base)
and
latest version
latest version
5200269b
5 commits,
3 years ago
version 1
7ec21800
5 commits,
3 years ago
13 files
+
14
−
339
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
13
Search (e.g. *.vue) (Ctrl+P)
GUI/coregui/Views/WelcomeView.cpp
+
0
−
3
Options
@@ -14,7 +14,6 @@
#include
"GUI/coregui/Views/WelcomeView.h"
#include
"GUI/coregui/Views/SampleDesigner/DesignerHelper.h"
#include
"GUI/coregui/mainwindow/UpdateNotifierWidget.h"
#include
"GUI/coregui/mainwindow/mainwindow.h"
#include
"GUI/coregui/mainwindow/mainwindow_constants.h"
#include
"GUI/coregui/mainwindow/projectdocument.h"
@@ -45,7 +44,6 @@ WelcomeView::WelcomeView(MainWindow* parent)
,
m_newUsertButton
(
nullptr
)
,
m_currentProjectLabel
(
nullptr
)
,
m_recentProjectLayout
(
nullptr
)
,
m_notifierWidget
(
new
UpdateNotifierWidget
(
parent
->
updateNotifier
()))
{
QPalette
palette
;
palette
.
setColor
(
QPalette
::
Window
,
QColor
(
240
,
240
,
240
,
255
));
@@ -55,7 +53,6 @@ WelcomeView::WelcomeView(MainWindow* parent)
auto
centralWidgetLayout
=
new
QVBoxLayout
;
centralWidgetLayout
->
setMargin
(
0
);
centralWidgetLayout
->
addWidget
(
createProjectWidget
());
centralWidgetLayout
->
addWidget
(
m_notifierWidget
);
centralWidgetLayout
->
addStretch
(
1
);
auto
centralWidget
=
new
QWidget
;
Loading