Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Utilities
Konsole
Commits
a59f5221
Commit
a59f5221
authored
Jul 15, 2020
by
Tomaz Canabrava
Browse files
Remove another slot() from a rebase from master
parent
22fe7942
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/EditProfileDialog.cpp
View file @
a59f5221
...
...
@@ -1565,11 +1565,8 @@ void EditProfileDialog::setupScrollingPage(const Profile::Ptr &profile)
_scrollingUi
->
scrollFullPage
->
setChecked
(
Enum
::
ScrollPageFull
==
scrollFullPage
);
connect
(
_scrollingUi
->
scrollFullPage
,
&
QPushButton
::
clicked
,
this
,
&
EditProfileDialog
::
scrollFullPage
);
const
auto
options
=
QVector
<
BooleanOption
>
{
{
_scrollingUi
->
highlightScrolledLinesButton
,
Profile
::
HighlightScrolledLines
,
SLOT
(
toggleHighlightScrolledLines
(
bool
))}
};
setupCheckBoxes
(
options
,
profile
);
_scrollingUi
->
highlightScrolledLinesButton
->
setChecked
(
profile
->
property
<
bool
>
(
Profile
::
HighlightScrolledLines
));
connect
(
_scrollingUi
->
highlightScrolledLinesButton
,
&
QPushButton
::
clicked
,
this
,
&
EditProfileDialog
::
toggleHighlightScrolledLines
);
// signals and slots
connect
(
_scrollingUi
->
historySizeWidget
,
&
Konsole
::
HistorySizeWidget
::
historySizeChanged
,
this
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment