| Summary: | Allow to scroll beyond image borders | ||
|---|---|---|---|
| Product: | [Applications] krita | Reporter: | Thomas Zander <zander> |
| Component: | General | Assignee: | Krita Bugs <krita-bugs-null> |
| Status: | RESOLVED DUPLICATE | ||
| Severity: | wishlist | CC: | bluedzins, halla |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Thomas Zander
2006-08-21 21:23:37 UTC
SVN commit 575636 by coppens:
Due to popular request: allow freehand painting strokes to start outside the image area. This would be especially handy together with wishlist item 132759
CCBUG:130481
CCBUG:132759
M +4 -2 kis_tool_freehand.cc
--- branches/koffice/1.6/koffice/krita/ui/kis_tool_freehand.cc #575635:575636
@@ -81,9 +81,11 @@
if (e->button() == QMouseEvent::LeftButton) {
+ // People complain that they can't start brush strokes outside of the image boundaries.
+ // This makes sense, especially when combined with BUG:132759, so commenting out the
+ // next line makes sense.
+ //if (!m_currentImage->bounds().contains(e->pos().floorQPoint())) return;
- if (!m_currentImage->bounds().contains(e->pos().floorQPoint())) return;
-
initPaint(e);
paintAt(e->pos(), e->pressure(), e->xTilt(), e->yTilt());
I still have a bug here: when I do that with the tablet stylus, krita gets confused and thinks the mouse is the stylus and the stylus the mouse and neither can paint anymore -- until I restart my X11 session. *** Bug 196176 has been marked as a duplicate of this bug. *** *** This bug has been marked as a duplicate of bug 189541 *** |