Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
What's new
4
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dianara Developers
Dianara
Commits
0b516f0a
Commit
0b516f0a
authored
Dec 05, 2017
by
JanKusanagi
Browse files
Fix weird issue with the mouse wheel when trying to go past 500
parent
da114878
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
0b516f0a
v1.4.1 (December 2017)
v1.4.1 (December
30,
2017)
- Ability to save and restore post drafts.
- Post publisher can grow much bigger.
- System notifications now include a button to show the program.
- Properly bring main window to the front when restoring from tray icon,
and when clicking the "Show" button in a notification (depends on your WM).
- Fixes in the profile editor.
- Fixes in the profile editor
and image viewer
.
- Other minor improvements.
...
...
src/imageviewer.cpp
View file @
0b516f0a
...
...
@@ -586,8 +586,12 @@ void ImageViewer::zoomToFull()
*/
void
ImageViewer
::
setFullMode
()
{
m_fitToWindow
=
false
;
this
->
drawImage
();
// Only if not already in full mode, to avoid weird effects with wheel events
if
(
m_fitToWindow
)
{
m_fitToWindow
=
false
;
this
->
drawImage
();
}
}
...
...
src/ivgraphicsview.cpp
View file @
0b516f0a
...
...
@@ -74,9 +74,9 @@ void IvGraphicsView::wheelEvent(QWheelEvent *event)
{
emit
zoomOutRequested
();
}
}
event
->
accept
();
event
->
accept
();
}
}
...
...
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