[krita] [Bug 370572] Crashing after applying transform mask to a cloned layer

2016-10-25 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370572

--- Comment #4 from Boudewijn Rempt  ---
Was the original a vector layer? And did you duplicate the layer or create a
clone layer?

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371568] Krita opens main window and then maximizes it, instead of showing maximized in one go

2016-10-25 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371568

Boudewijn Rempt  changed:

   What|Removed |Added

  Latest Commit||http://commits.kde.org/krit
   ||a/3b62983593fbf5c293e603a2b
   ||2c92c83d70acc57
 Resolution|--- |FIXED
 Status|UNCONFIRMED |RESOLVED

--- Comment #7 from Boudewijn Rempt  ---
Git commit 3b62983593fbf5c293e603a2b2c92c83d70acc57 by Boudewijn Rempt.
Committed on 25/10/2016 at 07:23.
Pushed by rempt into branch 'master'.

Make Qt 5.6.0 the minimum with an override

Qt 5.6 has fixed the bug for which this reverted commit was
a hacky fix; the hacky fix caused problems for kwin because
we first show, then position the main window.

Revert "Fix wrong positioning of children/popup widgets"

This reverts commit ceff0e241bbd1c14b4b5ee5de11743b92fb7d760.

M  +3-3CMakeLists.txt
M  +2-1libs/ui/KisApplication.cpp
M  +1-21   libs/ui/KisMainWindow.cpp
M  +0-1libs/ui/KisMainWindow.h

http://commits.kde.org/krita/3b62983593fbf5c293e603a2b2c92c83d70acc57

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371542] Pen Pressure has stopped working completely, Items in dropdown menus do not appear

2016-10-24 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371542

--- Comment #7 from Boudewijn Rempt  ---
Thanks for uploading the file! the kritashortcutsrc probably isn't necessary,
so don't worry about that one. I'll check what's up tomorrow morning.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371542] Pen Pressure has stopped working completely, Items in dropdown menus do not appear

2016-10-24 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371542

--- Comment #3 from Boudewijn Rempt  ---
Do you have a copy of the kritarc that caused the problems? If so, can you
share it? I wonder what's in it that presents these issues.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371568] Krita opens main window and then maximizes it, instead of showing maximized in one go

2016-10-24 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371568

--- Comment #6 from Boudewijn Rempt  ---
Ah, right! Well, since Qt 5.6 is now the version used for all our releases and
the version on most distributions, I guess we can remove this again. I'll also
propose raising the minimum version of Qt, but that might run into some
resistance.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371568] Krita opens main window and then maximizes it, instead of showing maximized in one go

2016-10-24 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371568

--- Comment #4 from Boudewijn Rempt  ---
Sure, that's here:


https://phabricator.kde.org/diffusion/KRITA/browse/master/libs/ui/KisMainWindow.cpp;fbb623ff37d1225c0302d1ddb459a433bc555148$2388

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 367832] Do not export PNG with Embed sRGB profile checked by default because Firefox color shift and more.

2016-10-24 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367832

Boudewijn Rempt  changed:

   What|Removed |Added

  Latest Commit||http://commits.kde.org/krit
   ||a/165135179ad2f29c5b9f3f94f
   ||56a4dd5cd78f941
 Status|CONFIRMED   |RESOLVED
 Resolution|--- |FIXED

--- Comment #31 from Boudewijn Rempt  ---
Git commit 165135179ad2f29c5b9f3f94f56a4dd5cd78f941 by Boudewijn Rempt.
Committed on 24/10/2016 at 13:10.
Pushed by rempt into branch 'rempt/impex-refactoring'.

Set some common properties of the image on the export configuration

This can be used to correctly configure the dialogs, which don't
have access to the document or the image. This also means the
save profile option works again in the png export dialog.

M  +27   -1libs/ui/KisImportExportManager.cpp
M  +1-22   plugins/impex/png/kis_png_export.cc

http://commits.kde.org/krita/165135179ad2f29c5b9f3f94f56a4dd5cd78f941

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371568] Krita opens main window and then maximizes it, instead of showing maximized in one go

2016-10-24 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371568

--- Comment #2 from Boudewijn Rempt  ---
Um, actually, isn't this a Qt bug then? I know of no KDE or Qt application that
uses showMaximized() directly, and the Qt documentation says to use 

http://doc.qt.io/qt-5/qwidget.html#saveGeometry

and 

http://doc.qt.io/qt-5/qwidget.html#restoreGeometry

Which is what we do:

void KisMainWindow::closeEvent(QCloseEvent *e)
{
...
cfg.writeEntry("ko_windowstate", saveState().toBase64());
...
}

and

void KisMainWindow::initializeGeometry()
{
// if the user didn's specify the geometry on the command line (does anyone
do that still?),
// we first figure out some good default size and restore the x,y position.
See bug 285804Z.
KConfigGroup cfg( KSharedConfig::openConfig(), "MainWindow");
QByteArray geom = QByteArray::fromBase64(cfg.readEntry("ko_geometry",
QByteArray()));
if (!restoreGeometry(geom)) {
...
}

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 344533] Vector layer duplication is broken (produces distorted paths)

2016-10-24 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=344533

Boudewijn Rempt  changed:

   What|Removed |Added

 Status|NEEDSINFO   |CONFIRMED
 Resolution|WAITINGFORINFO  |---

--- Comment #10 from Boudewijn Rempt  ---
Ah, I missed that, sorry. Yes, with that file I can see the effect you mean.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371568] Krita opens main window and then maximizes it, instead of showing maximized in one go

2016-10-24 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371568

Boudewijn Rempt  changed:

   What|Removed |Added

 CC||b...@valdyas.org

--- Comment #1 from Boudewijn Rempt  ---
Hm, that's "interesting"... The window geometry restoration code is ancient,
probably dates back to Qt 1.x and is shared with all the calligra applications.
I'm not even sure I really understand what it's trying to do.

-- 
You are receiving this mail because:
You are watching all bug changes.


[kwin] [Bug 371284] Kwin hinders brush cursor in krita making the window move while painting

2016-10-24 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371284

--- Comment #24 from Boudewijn Rempt  ---
Yay!

(On the breeze topic, we've got a plan to see if there are any more issues. See
https://bugs.kde.org/show_bug.cgi?id=361811 -- and then we can re-enable it,
maybe with a version check.)

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 367915] tool options can't be used in - krita 3.0 f0cbffc

2016-10-24 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367915

Boudewijn Rempt  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 CC||b...@valdyas.org
 Status|UNCONFIRMED |RESOLVED
   Platform|Kubuntu Packages|MS Windows

--- Comment #1 from Boudewijn Rempt  ---
Hi Felipe,

Please update to the latest version, where this bug is fixed. You might need to
reset your configuration as well:
https://docs.krita.org/KritaFAQ#Resetting_Krita_configuration

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 368093] Color schemes collide with the ones from Plasma's breeze

2016-10-24 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=368093

Boudewijn Rempt  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|CONFIRMED   |RESOLVED
  Latest Commit||http://commits.kde.org/krit
   ||a/f50c5949365e333e9762b6357
   ||22251a8406b3f81

--- Comment #4 from Boudewijn Rempt  ---
Git commit f50c5949365e333e9762b635722251a8406b3f81 by Boudewijn Rempt.
Committed on 24/10/2016 at 11:48.
Pushed by rempt into branch 'master'.

When Krita is built by distributions for installation into /usr,
the breeze themes we borrowed shouldn't be installed, because all
color themes share the same installation directory.

But when we build for Windows, OSX or AppImages, we do want to have
these styles available because they're very nice.

M  +2-0CMakeLists.txt
M  +9-3krita/data/themes/CMakeLists.txt

http://commits.kde.org/krita/f50c5949365e333e9762b635722251a8406b3f81

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 344533] Vector layer duplication is broken (produces distorted paths)

2016-10-24 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=344533

--- Comment #9 from Boudewijn Rempt  ---
Ah, I missed that, sorry.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 368093] Color schemes collide with the ones from Plasma's breeze

2016-10-24 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=368093

--- Comment #3 from Boudewijn Rempt  ---
Ah, you're right. I'll fix that...

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 368101] Unsharp mask filter is too strong by default

2016-10-24 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=368101

Boudewijn Rempt  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|UNCONFIRMED |RESOLVED
  Latest Commit||http://commits.kde.org/krit
   ||a/1d8269e1fdb14c687646a0c8c
   ||d9357c088adb8bb

--- Comment #1 from Boudewijn Rempt  ---
Git commit 1d8269e1fdb14c687646a0c8cd9357c088adb8bb by Boudewijn Rempt.
Committed on 24/10/2016 at 11:35.
Pushed by rempt into branch 'master'.

Set the default value for Unsharp Mask amount to 2

M  +1-1plugins/filters/unsharp/kis_wdg_unsharp.cpp
M  +1-1plugins/filters/unsharp/wdgunsharp.ui

http://commits.kde.org/krita/1d8269e1fdb14c687646a0c8cd9357c088adb8bb

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371561] Appimage aborts when started on Wayland

2016-10-24 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371561

--- Comment #4 from Boudewijn Rempt  ---
Yes, you're right of course.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 368109] Document gets inserted 2 times inserting a .kra file on document

2016-10-24 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=368109

Boudewijn Rempt  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|CONFIRMED   |RESOLVED

--- Comment #2 from Boudewijn Rempt  ---
This is fixed in the impex-refactoring branch

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371561] Appimage aborts when started on Wayland

2016-10-24 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371561

Boudewijn Rempt  changed:

   What|Removed |Added

 CC||b...@valdyas.org

--- Comment #2 from Boudewijn Rempt  ---
That was easy enough to add :-)

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371561] Appimage aborts when started on Wayland

2016-10-24 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371561

Boudewijn Rempt  changed:

   What|Removed |Added

  Latest Commit||http://commits.kde.org/krit
   ||a/20e0f08d7ae3f1849cfe40bc6
   ||514cec3840399d6
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

--- Comment #1 from Boudewijn Rempt  ---
Git commit 20e0f08d7ae3f1849cfe40bc6514cec3840399d6 by Boudewijn Rempt.
Committed on 24/10/2016 at 09:58.
Pushed by rempt into branch 'master'.

M  +4-0krita/main.cc

http://commits.kde.org/krita/20e0f08d7ae3f1849cfe40bc6514cec3840399d6

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371555] Custom pixel brush paints a pixel after erasing using a pixel eraser

2016-10-24 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371555

Boudewijn Rempt  changed:

   What|Removed |Added

 CC||b...@valdyas.org

--- Comment #1 from Boudewijn Rempt  ---
Can you please attach your custom brush (the .kpp file) to the bug report?

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 344533] Vector layer duplication is broken (produces distorted paths)

2016-10-24 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=344533

--- Comment #7 from Boudewijn Rempt  ---
Yes, strange... Could you share the .kra file with us?

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371550] Suggestion of an linked layers feature that will allow to transform several layers at the same time.

2016-10-24 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371550

Boudewijn Rempt  changed:

   What|Removed |Added

 CC||b...@valdyas.org

--- Comment #1 from Boudewijn Rempt  ---
Created attachment 101733
  --> https://bugs.kde.org/attachment.cgi?id=101733=edit
Image saved from link

I agree that something like this could be useful, but it would need a very good
UX design. It's not something we'll get down any time soon, either.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371525] Native file dialogs

2016-10-24 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371525

Boudewijn Rempt  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |LATER
 CC||b...@valdyas.org

--- Comment #1 from Boudewijn Rempt  ---
I agree that it would be nice, but unfortunately Qt's integration with the
native OSX file dialog is very buggy. When using the native dialog, it's
impossible to actually manage the list of file types that the dialog can show.
I'm afraid that this'll have to wait until it gets fixed in Qt.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371542] Pen Pressure has stopped working completely, Items in dropdown menus do not appear

2016-10-24 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371542

Boudewijn Rempt  changed:

   What|Removed |Added

 CC||b...@valdyas.org

--- Comment #1 from Boudewijn Rempt  ---
Curious -- the same issue was reported on Windows against 3.0.91 (which is
really the latest beta, 3.0.1.90 is the previous beta). It doesn't happen on
any of my test systems, not on Windows, not on OSX, not on LInux, so I'm
wondering what's up.

Does it make a difference if you remove the Krita settings file
(~/Library/Preferences/kritarc)?

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371523] Crash when open xcf (gimp) files

2016-10-23 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371523

Boudewijn Rempt  changed:

   What|Removed |Added

 Resolution|--- |FIXED
  Latest Commit||http://commits.kde.org/krit
   ||a/adf8f6ee59820f5147a60af82
   ||bc3ff7e2f873153
 Status|CONFIRMED   |RESOLVED

--- Comment #4 from Boudewijn Rempt  ---
Git commit adf8f6ee59820f5147a60af82bc3ff7e2f873153 by Boudewijn Rempt.
Committed on 23/10/2016 at 14:25.
Pushed by rempt into branch 'master'.
Related: bug 2, bug 9

Krita cannot load Gimp 2.9 files (and never will be, probably,
because xcf-tools isn't maintained anymore and the file format
is un(der)documented). But we shouldn't crash and burn trying
to load them anyway.

This adds two new strings for translation, I'm afraid :-(

CCMAIL:kde-i18n-...@kde.org

M  +5-0libs/ui/KisImportExportFilter.cpp
M  +1-0libs/ui/KisImportExportFilter.h
M  +9-11   plugins/impex/xcf/3rdparty/xcftools/xcf-general.c
M  +6-0plugins/impex/xcf/kis_xcf_import.cpp

http://commits.kde.org/krita/adf8f6ee59820f5147a60af82bc3ff7e2f873153

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371523] Crash when open xcf (gimp) files

2016-10-23 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371523

Boudewijn Rempt  changed:

   What|Removed |Added

 Status|UNCONFIRMED |CONFIRMED
 Ever confirmed|0   |1

--- Comment #3 from Boudewijn Rempt  ---
Thanks! That's a version 8 image, so Krita cannot load it -- gimp's updated
file format is even more undocumented than the older one -- but Krita shouldn't
abort on loading it, of course.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371523] Crash when open xcf (gimp) files

2016-10-23 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371523

Boudewijn Rempt  changed:

   What|Removed |Added

   Platform|Homebrew (Mac OS X) |Mac OS X Disk Images
 CC||b...@valdyas.org

--- Comment #1 from Boudewijn Rempt  ---
Hi,

Thanks for your report. The gimp xcf images I've tried do work. Which version
of Gimp did you save the image with? And could you attach an image that causes
the crash (or, if they're private, mail directly to b...@kde.org)?

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370566] Larger documents do not get saved with Save as

2016-10-23 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370566

--- Comment #6 from Boudewijn Rempt  ---
I suspect it's rather that Krita is confused because it thinks the image is
still busy processing something.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371470] Slow updates and wont save

2016-10-23 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371470

--- Comment #5 from Boudewijn Rempt  ---
I don't know what you mean with "the log files". Krita doesn't write log files.
And if it did, I wouldn't want to see them because 2.9.7 is no longer being
maintained. We can't help it that your distribution cannot keep up with us,
after 2.9.7 we released 2.9.8, 2.9.9, 2.9.10 and 2.9.11. You issues might have
been fixed in any of those releases. Or they might have been fixed in 3.0.0,
3.0.1 or 3.0.1.1.

And the reason we release new versions is because we fix bugs; and that's the
reason you should upgrade to a new version.

That's not pathetic, that's normal.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371463] error at new document using template

2016-10-23 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371463

--- Comment #14 from Boudewijn Rempt  ---
What I've seen is that at some point, the new image dialog opens with a
template page selected by default, and if I then select a template, a crash
happens.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371463] error at new document using template

2016-10-23 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371463

Boudewijn Rempt  changed:

   What|Removed |Added

  Latest Commit|http://commits.kde.org/krit |http://commits.kde.org/krit
   |a/e032da163eb1134adf140e947 |a/157379e962373db07c53da0fa
   |ee79b4d55f4262a |e7785a4a3460e78

--- Comment #17 from Boudewijn Rempt  ---
Git commit 157379e962373db07c53da0fae7785a4a3460e78 by Boudewijn Rempt.
Committed on 23/10/2016 at 09:55.
Pushed by rempt into branch 'rempt/impex-refactoring'.

Sometimes, if the dialog would open by default on a template
page, and you'd create an image from a template, the dialog
and pane would be deleted too early. We said, when creating
the slots, that deleteLater would be used to delete the dialog,
but we didn't do that... Now we do.

M  +1-3libs/ui/KisMainWindow.cpp
M  +2-2libs/ui/KisPart.cpp

http://commits.kde.org/krita/157379e962373db07c53da0fae7785a4a3460e78

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371463] error at new document using template

2016-10-23 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371463

Boudewijn Rempt  changed:

   What|Removed |Added

 Resolution|--- |FIXED
  Latest Commit||http://commits.kde.org/krit
   ||a/e032da163eb1134adf140e947
   ||ee79b4d55f4262a
 Status|CONFIRMED   |RESOLVED

--- Comment #16 from Boudewijn Rempt  ---
Git commit e032da163eb1134adf140e947ee79b4d55f4262a by Boudewijn Rempt.
Committed on 23/10/2016 at 09:56.
Pushed by rempt into branch 'master'.

Sometimes, if the dialog would open by default on a template
page, and you'd create an image from a template, the dialog
and pane would be deleted too early. We said, when creating
the slots, that deleteLater would be used to delete the dialog,
but we didn't do that... Now we do.

M  +1-3libs/ui/KisMainWindow.cpp
M  +2-2libs/ui/KisPart.cpp

http://commits.kde.org/krita/e032da163eb1134adf140e947ee79b4d55f4262a

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371463] error at new document using template

2016-10-23 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371463

--- Comment #15 from Boudewijn Rempt  ---
Thread 1 "krita" received signal SIGSEGV, Segmentation fault.
0x07fc7c60 in ?? ()
Missing separate debuginfos, use: zypper install
libICE6-debuginfo-1.0.9-3.1.x86_64 libSM6-debuginfo-1.2.2-5.1.x86_64
libX11-6-debuginfo-1.6.3-3.1.x86_64 libX11-xcb1-debuginfo-1.6.3-3.1.x86_64
libXau6-debuginfo-1.0.8-6.1.x86_64 libXcursor1-debuginfo-1.1.14-6.1.x86_64
libXext6-debuginfo-1.3.3-3.1.x86_64 libXfixes3-debuginfo-5.0.1-5.1.x86_64
libXi6-debuginfo-1.7.5-1.1.x86_64 libXrender1-debuginfo-0.9.9-1.1.x86_64
libbz2-1-debuginfo-1.0.6-32.1.x86_64 libdbus-1-3-debuginfo-1.8.16-7.1.x86_64
libffi4-debuginfo-5.3.1+r233831-6.1.x86_64
libfreetype6-debuginfo-2.5.5-8.2.x86_64
libgcc_s1-debuginfo-5.3.1+r233831-6.1.x86_64
libglib-2_0-0-debuginfo-2.44.1-2.3.x86_64
libgobject-2_0-0-debuginfo-2.44.1-2.3.x86_64
libgomp1-debuginfo-5.3.1+r233831-6.1.x86_64
libgthread-2_0-0-debuginfo-2.44.1-2.3.x86_64
libicu52_1-debuginfo-52.1-10.3.x86_64 liblzma5-debuginfo-5.0.5-3.5.x86_64
libpcre1-debuginfo-8.33-3.5.x86_64
libstdc++6-debuginfo-5.3.1+r233831-6.1.x86_64
libuuid1-debuginfo-2.25-15.2.x86_64 libxcb-keysyms1-debuginfo-0.4.0-1.1.x86_64
libxcb-util1-debuginfo-0.4.0-1.1.x86_64 libxcb1-debuginfo-1.11.1-1.1.x86_64
(gdb) bt
#0  0x07fc7c60 in  ()
#1  0x7128adec in QApplicationPrivate::notify_helper(QObject*, QEvent*)
() at /home/boud/dev/deps/lib/libQt5Widgets.so.5
#2  0x7128f380 in QApplication::notify(QObject*, QEvent*) () at
/home/boud/dev/deps/lib/libQt5Widgets.so.5
#3  0x778e97b7 in KisApplication::notify(QObject*, QEvent*)
(this=, receiver=0x7eef380, event=0x7fffc330) at
/home/boud/dev/impex/libs/ui/KisApplication.cpp:511
#4  0x7049e8e5 in QCoreApplication::notifyInternal2(QObject*, QEvent*)
() at /home/boud/dev/deps/lib/libQt5Core.so.5
#5  0x712e7d6b in  () at /home/boud/dev/deps/lib/libQt5Widgets.so.5
#6  0x7128adec in QApplicationPrivate::notify_helper(QObject*, QEvent*)
() at /home/boud/dev/deps/lib/libQt5Widgets.so.5
#7  0x7128f44a in QApplication::notify(QObject*, QEvent*) () at
/home/boud/dev/deps/lib/libQt5Widgets.so.5
#8  0x778e97b7 in KisApplication::notify(QObject*, QEvent*)
(this=, receiver=0x7fd0ec0, event=0x7fffc330) at
/home/boud/dev/impex/libs/ui/KisApplication.cpp:511
#9  0x7049e8e5 in QCoreApplication::notifyInternal2(QObject*, QEvent*)
() at /home/boud/dev/deps/lib/libQt5Core.so.5
#10 0x70a4e160 in
QGuiApplicationPrivate::processKeyEvent(QWindowSystemInterfacePrivate::KeyEvent*)
() at /home/boud/dev/deps/lib/libQt5Gui.so.5
#11 0x70a52ad5 in
QGuiApplicationPrivate::processWindowSystemEvent(QWindowSystemInterfacePrivate::WindowSystemEvent*)
() at /home/boud/dev/deps/lib/libQt5Gui.so.5
#12 0x70a34bbb in
QWindowSystemInterface::sendWindowSystemEvents(QFlags)
() at /home/boud/dev/deps/lib/libQt5Gui.so.5
#13 0x7fffe78fd860 in  () at
/home/boud/dev/deps/plugins/platforms/../../lib/libQt5XcbQpa.so.5
#14 0x7fffeba70c84 in g_main_context_dispatch () at
/usr/lib64/libglib-2.0.so.0
#15 0x7fffeba70ed8 in  () at /usr/lib64/libglib-2.0.so.0
#16 0x7fffeba70f7c in g_main_context_iteration () at
/usr/lib64/libglib-2.0.so.0
#17 0x704eed5c in
QEventDispatcherGlib::processEvents(QFlags) ()
at /home/boud/dev/deps/lib/libQt5Core.so.5
#18 0x7049ca8b in
QEventLoop::exec(QFlags) () at
/home/boud/dev/deps/lib/libQt5Core.so.5
#19 0x7147bcdc in QDialog::exec() () at
/home/boud/dev/deps/lib/libQt5Widgets.so.5
#20 0x7791048f in KisMainWindow::slotFileNew() (this=)
at /home/boud/dev/impex/libs/ui/KisMainWindow.cpp:1352
#21 0x7792005a in KisMainWindow::qt_static_metacall(QObject*,
QMetaObject::Call, int, void**) (_o=0x6fd3680, _c=,
_id=, _a=0x7fffc9e0)
at /home/boud/dev/b-impex/libs/ui/moc_KisMainWindow.cpp:304
#22 0x704c8441 in QMetaObject::activate(QObject*, int, int, void**) ()
at /home/boud/dev/deps/lib/libQt5Core.so.5
#23 0x71281842 in QAction::triggered(bool) () at
/home/boud/dev/deps/lib/libQt5Widgets.so.5
#24 0x712843dd in QAction::activate(QAction::ActionEvent) () at
/home/boud/dev/deps/lib/libQt5Widgets.so.5
#25 0x712845a4 in QAction::event(QEvent*) () at
/home/boud/dev/deps/lib/libQt5Widgets.so.5
#26 0x7128adec in QApplicationPrivate::notify_helper(QObject*, QEvent*)
() at /home/boud/dev/deps/lib/libQt5Widgets.so.5
#27 0x7128f44a in QApplication::notify(QObject*, QEvent*) () at
/home/boud/dev/deps/lib/libQt5Widgets.so.5
#28 0x778e97b7 in KisApplication::notify(QObject*, QEvent*)
(this=, receiver=0x795fc90, event=0x7fffcd20) at
/home/boud/dev/impex/libs/ui/KisApplication.cpp:511
#29 0x7049e8e5 in QCoreApplication::notifyInternal2(QObject*, QEvent*)
() at /home/boud/dev/deps/lib/libQt5Core.so.5
#30 0x70a7d02f in QShortcutMap::dispatchEvent(QKeyEvent*) () at

[krita] [Bug 371463] error at new document using template

2016-10-23 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371463

Boudewijn Rempt  changed:

   What|Removed |Added

 Status|NEEDSINFO   |CONFIRMED
 Ever confirmed|0   |1
Summary|error at new document using |error at new document using
   |templete|template
 CC||b...@valdyas.org
 Resolution|WAITINGFORINFO  |---

--- Comment #13 from Boudewijn Rempt  ---
I've also seen this happen, though I cannot reproduce it reliably.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371470] Slow updates and wont save

2016-10-23 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371470

Boudewijn Rempt  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |UNMAINTAINED

--- Comment #3 from Boudewijn Rempt  ---
Please do not change the status of bug reports: the bug tracker is a tool for
developers to work with. We decide the status of a bug report.

You reported this bug for 2.9.7 which is an old and unmaintained version of
Krita. We do not accept reports for that version anymore. Please use the most
recent version and if you find a specific issue, report it. "Doesn't update
fast enough" is not a bug report.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 367774] csv format doesn't export

2016-10-23 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367774

Boudewijn Rempt  changed:

   What|Removed |Added

 Status|CONFIRMED   |NEEDSINFO
 Resolution|--- |FIXED

--- Comment #4 from Boudewijn Rempt  ---
I think we can close this bug now, right?

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371124] Frequent crash without apparent common cause, I have the reports from drmingw

2016-10-22 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371124

Boudewijn Rempt  changed:

   What|Removed |Added

 CC||b...@valdyas.org

--- Comment #9 from Boudewijn Rempt  ---
All those actually look like the same thing :-(. I'm still not able to
reproduce. Do you have any security software like sandboxie installed?

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 364034] toolbox layout class is broken in many ways

2016-10-22 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=364034

Boudewijn Rempt  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
 Resolution|--- |FIXED
  Latest Commit||http://commits.kde.org/krit
   ||a/45a5e1d0fa73830e1626b107e
   ||59f8296897ea623

--- Comment #13 from Boudewijn Rempt  ---
Git commit 45a5e1d0fa73830e1626b107e59f8296897ea623 by Boudewijn Rempt.
Committed on 22/10/2016 at 13:26.
Pushed by rempt into branch 'master'.

Since sections can overlap (if a section occupies two rows, and there
is space on the second row for all of the next section, the next section
will be placed overlapping with the previous section), it's important that
later sections will be higher in the widget z-order than previous
sections, so raise it.

M  +1-1libs/widgets/KoToolBox.cpp
M  +0-1libs/widgets/KoToolBoxButton_p.h
M  +49   -0libs/widgets/KoToolBoxLayout_p.h

http://commits.kde.org/krita/45a5e1d0fa73830e1626b107e59f8296897ea623

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371470] Slow updates and wont save

2016-10-22 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371470

Boudewijn Rempt  changed:

   What|Removed |Added

 CC||b...@valdyas.org
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |UNMAINTAINED

--- Comment #1 from Boudewijn Rempt  ---
I'm sorry, but generic "it's too slow" reports are not very helpful for us. But
more importantly, Krita 2.9.7 as shipped by Ubuntu and Mint is very old, and
we've been working really hard to improve performance since then. Please update
to the lates version (3.0.1.1) or the latest beta (3.0.91). You can use either
the snap image or the appimage: we no longer manage to provide a ppa as well.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 364034] toolbox layout class is broken in many ways

2016-10-22 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=364034

--- Comment #12 from Boudewijn Rempt  ---
One bug for this issue is enough...

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 364034] toolbox layout class is broken in many ways

2016-10-22 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=364034

Boudewijn Rempt  changed:

   What|Removed |Added

 CC||archta...@gmail.com

--- Comment #11 from Boudewijn Rempt  ---
*** Bug 371476 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371476] Buttons in tools disabled (crop tool to angle)

2016-10-22 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371476

Boudewijn Rempt  changed:

   What|Removed |Added

 CC||b...@valdyas.org
 Resolution|--- |DUPLICATE
 Status|UNCONFIRMED |RESOLVED

--- Comment #1 from Boudewijn Rempt  ---


*** This bug has been marked as a duplicate of bug 364034 ***

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 355544] Some tools in toolbox docker can't be used

2016-10-22 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=355544

Boudewijn Rempt  changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #10 from Boudewijn Rempt  ---


*** This bug has been marked as a duplicate of bug 364034 ***

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 364034] toolbox layout class is broken in many ways

2016-10-22 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=364034

Boudewijn Rempt  changed:

   What|Removed |Added

 CC||rebuilders...@gmail.com

--- Comment #10 from Boudewijn Rempt  ---
*** Bug 355544 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370379] When applying a Transform Mask, the original image still appears

2016-10-21 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370379

Boudewijn Rempt  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |FIXED

--- Comment #8 from Boudewijn Rempt  ---
Thanks for checking!

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371124] Frequent crash without apparent common cause, I have the reports from drmingw

2016-10-21 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371124

--- Comment #5 from Boudewijn Rempt  ---
Git commit 7c4c67f450d3c7390d65b35ff05d2e0b1e5d48e8 by Boudewijn Rempt.
Committed on 21/10/2016 at 08:57.
Pushed by rempt into branch 'rempt/impex-refactoring'.

Check pointer before dereferencing

And remove over-use of auto. This fixes at least one crash as
reported in 371124

M  +3-3libs/ui/input/kis_input_manager.cpp

http://commits.kde.org/krita/7c4c67f450d3c7390d65b35ff05d2e0b1e5d48e8

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370379] When applying a Transform Mask, the original image still appears

2016-10-21 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370379

--- Comment #5 from Boudewijn Rempt  ---
Hum... And that's with the same version of Krita? Could you try the latest beta
build -- download.kde.org/unstable/krita/3.0.91 -- that has some fixes for
transform masks.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370604] Deform Brush doesn't respect alpha

2016-10-20 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370604

Boudewijn Rempt  changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 Status|CONFIRMED   |RESOLVED

--- Comment #6 from Boudewijn Rempt  ---
Ah, thanks! Then we can just close it.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370566] Larger documents do not get saved with Save as

2016-10-20 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370566

--- Comment #4 from Boudewijn Rempt  ---
It could be the same thing, but it's still strange that it always happens for
you -- and never for other people :-(

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370366] Transform Box disappears

2016-10-20 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370366

Boudewijn Rempt  changed:

   What|Removed |Added

 Resolution|--- |WONTFIX
 Status|UNCONFIRMED |RESOLVED

--- Comment #5 from Boudewijn Rempt  ---
Oh, wait, I might have completely misunderstood your message. If you mean that
after applying a transformation you have to click on the canvas again to start
creating a new transformation, that's intended behaviour. People complained
that keeping the transformation guides after doing a transformation was too
confusing.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370364] [WACOM] Switching back to Krita after working on other apps disables Pen Pressure

2016-10-20 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370364

--- Comment #3 from Boudewijn Rempt  ---
Weird, I've seen this reported before, but about cheap tablets like Genius and
on Windows, not OSX. On OSX we use Qt's tablet code still, and apparently there
is a similar issue: the tablet driver won't give us our context back. Does it
matter whether you switch to another application that can make use of the
pressure-sensitive stylus or not?

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370320] Cannot open Krita files by double clicking

2016-10-20 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370320

--- Comment #2 from Boudewijn Rempt  ---
Note to self: check void KisApplication::fileOpenRequested(const QString )

See http://doc.qt.io/qt-5/qfileopenevent.html

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370364] [WACOM] Switching back to Krita after working on other apps disables Pen Pressure

2016-10-20 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370364

Boudewijn Rempt  changed:

   What|Removed |Added

  Component|general |tablet support
Summary|Switching back to Krita |[WACOM] Switching back to
   |after working on other apps |Krita after working on
   |disables Pen Pressure   |other apps disables Pen
   ||Pressure

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 344533] Vector layer duplication is broken (produces distorted paths)

2016-10-20 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=344533

--- Comment #4 from Boudewijn Rempt  ---
Ah, you're the person who couldn't run the appimage on Debian?

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370379] When applying a Transform Mask, the original image still appears

2016-10-20 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370379

Boudewijn Rempt  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDSINFO
 Resolution|--- |WAITINGFORINFO

--- Comment #3 from Boudewijn Rempt  ---
Hm... I guess it could be some kind of display issue. I only have macs with an
Intel GPU, and AMD GPU's are notorious. Can you also reproduce it if you
disable opengl?

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370572] Crashing after applying transform mask to a cloned layer

2016-10-20 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370572

Boudewijn Rempt  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDSINFO
 Resolution|--- |WAITINGFORINFO

--- Comment #2 from Boudewijn Rempt  ---
Forgot to change the status.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370604] Deform Brush doesn't respect alpha

2016-10-20 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370604

Boudewijn Rempt  changed:

   What|Removed |Added

   Severity|normal  |wishlist
 Ever confirmed|0   |1
 Status|UNCONFIRMED |CONFIRMED

--- Comment #4 from Boudewijn Rempt  ---
Well, we might change it, but tbh, before we find a volunteer for hacking that
code could take a longish time. Since this brush has always behaved like this,
changing the behavior makes it a wish, not a bug.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370722] Krita crashes when choosing OK in the configuration window

2016-10-20 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370722

Boudewijn Rempt  changed:

   What|Removed |Added

 Resolution|--- |UPSTREAM
 Status|UNCONFIRMED |RESOLVED

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370962] Circle tool, CTRL does not center the circle on the position that was clicked. Plus centre does not snap to grid/guide.

2016-10-20 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370962

Boudewijn Rempt  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME
 CC||b...@valdyas.org

--- Comment #1 from Boudewijn Rempt  ---
Hi Geoffrey,

Pressing ctrl doesn't recenter the circle, but it changes the way the circle
grows. Snap to grid works here, if I make sure it's enabled.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371037] Krita constantly freezes when painting, toggling between layers, or changing frames in animation timeline.

2016-10-20 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371037

Boudewijn Rempt  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDSINFO
 Resolution|--- |WAITINGFORINFO

--- Comment #2 from Boudewijn Rempt  ---
Forgot to change status after asking for more info.

-- 
You are receiving this mail because:
You are watching all bug changes.


[kwin] [Bug 371284] Kwin hinders brush cursor in krita making the window move while painting

2016-10-20 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371284

Boudewijn Rempt  changed:

   What|Removed |Added

 CC||b...@valdyas.org

--- Comment #5 from Boudewijn Rempt  ---
The default style for Krita is Fusion, and it's in fact really hard to use
Breeze or Oxygen because both of those styles are too broken to be used, at
least in the versions currently shipped by distributions. So, Krita on startup
forces Fusion, which doesn't have that move-by-clicking-on-empty-space-drag
feature. I can try to explicitly set the canvas widget to interactive: what is
the flag for that?

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 368351] [UGEE] Pen cursor laggs behind/doesn't respond when pen is hovering above tablet screen

2016-10-20 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=368351

--- Comment #3 from Boudewijn Rempt  ---
Let me rephrase that: we cannot code workarounds for bugs in the wintab drivers
provided by Ugee.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 368351] [UGEE] Pen cursor laggs behind/doesn't respond when pen is hovering above tablet screen

2016-10-20 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=368351

Boudewijn Rempt  changed:

   What|Removed |Added

 CC||b...@valdyas.org

--- Comment #2 from Boudewijn Rempt  ---
No, I did not fix this. We don't have Ugee hardware to test with. Until Ugee or
someone else donates the hardware, we cannot fix Ugee-specific bugs.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 369544] TouchScreen Problem

2016-10-19 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=369544

Boudewijn Rempt  changed:

   What|Removed |Added

 CC||b...@valdyas.org
 Resolution|--- |DUPLICATE
 Status|UNCONFIRMED |RESOLVED

--- Comment #1 from Boudewijn Rempt  ---


*** This bug has been marked as a duplicate of bug 364386 ***

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 344533] Vector layer duplication is broken (produces distorted paths)

2016-10-19 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=344533

Boudewijn Rempt  changed:

   What|Removed |Added

 Resolution|DOWNSTREAM  |WAITINGFORINFO

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371135] Active Local Selection doesn't actually limit drawing.

2016-10-19 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371135

Boudewijn Rempt  changed:

   What|Removed |Added

 Status|UNCONFIRMED |CONFIRMED
 CC||b...@valdyas.org
 Ever confirmed|0   |1

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 344533] Vector layer duplication is broken (produces distorted paths)

2016-10-19 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=344533

Boudewijn Rempt  changed:

   What|Removed |Added

 Status|CONFIRMED   |NEEDSINFO
 Resolution|--- |DOWNSTREAM

--- Comment #2 from Boudewijn Rempt  ---
We still need a kra file that shows the issue.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370519] Only opening once during a computer session

2016-10-19 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370519

Boudewijn Rempt  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDSINFO
 Resolution|--- |WAITINGFORINFO

--- Comment #2 from Boudewijn Rempt  ---
Without more information, I cannot investigate what's going on. There can
always only be one krita process running at the same time, so if a closed Krita
process is hanging around, starting a new one won't work. But you should be
able to see that process in the task manager and if so, kill it. If that
happens, it's interesting to try to figure out why Krita doesn't close
correctly on your system, of course.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 369675] Waiting for image operation to complete

2016-10-19 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=369675

Boudewijn Rempt  changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 Status|UNCONFIRMED |RESOLVED

--- Comment #2 from Boudewijn Rempt  ---
We've had other reports about Krita hanging when switching workspaces, too, but
we found a workaround which is in 3.0.1.90. Please try that version or the
latest beta which we'll release today or tomorrow. If you can still reproduce
the issue with those releases, please re-open the bug.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 369161] ext_qt (5.7) build fails with Xcode 8 + macOS Sierra

2016-10-19 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=369161

Boudewijn Rempt  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

--- Comment #12 from Boudewijn Rempt  ---
Closing then.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 369205] Krita crashes when exporting to various formats

2016-10-19 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=369205

Boudewijn Rempt  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #3 from Boudewijn Rempt  ---
We need more information to be able to investigate what's up: the export
options work fine for me on all operating systems. Please try the latest latest
beta (3.0.1.90, but 3.0.91 will be released today or tomorrow). If you can
reproduce the issue, please reopen the bug and attach a .kra file that will not
export to the formats you have tried.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 369447] The reload button stopped working.

2016-10-19 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=369447

Boudewijn Rempt  changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 Status|UNCONFIRMED |RESOLVED
 CC||b...@valdyas.org

--- Comment #2 from Boudewijn Rempt  ---
Hi Wolthera,

I also can no longer reproduce; if this still happens to you, please reopen the
bug. Maybe it's a particular tweak that doesn't get restored -- I tried the
mask size of a brush tip.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 364386] The freehand tool doesn't work when I am trying to finger paint on the touch screen

2016-10-19 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=364386

Boudewijn Rempt  changed:

   What|Removed |Added

 CC||stillo...@gmail.com

--- Comment #5 from Boudewijn Rempt  ---
*** Bug 369544 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 369601] the pressure doesn't work, it's full lines

2016-10-19 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=369601

Boudewijn Rempt  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #2 from Boudewijn Rempt  ---
This is likely a mis-configuration on your system, I'm afraid. The next beta
release will add even more debug information to the tablet log. If after
removing all drivers and then reinstalling the correct driver (and only that
one; you cannot have more than one tablet driver installed on Windows), the
issue is not solved, please make a tablet log and reopen the bug.

https://docs.krita.org/KritaFAQ#What_if_your_tablet_is_not_recognized_by_Krita.3F

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370457] A specific .kra file will not open when I try to in any way.

2016-10-19 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370457

Boudewijn Rempt  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

--- Comment #2 from Boudewijn Rempt  ---
I recovered the file.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371162] GNOME 3 tablet cursor doesn't interact with Krita

2016-10-18 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371162

Boudewijn Rempt  changed:

   What|Removed |Added

 Resolution|--- |WONTFIX
 Status|UNCONFIRMED |RESOLVED
 CC||b...@valdyas.org

--- Comment #1 from Boudewijn Rempt  ---
I'm sorry, but I'm not even going to consider looking into this: patches are
welcome, but it's not worth my time to install Gnome
something,something.something and try to figure out what it's doing. It's not a
bug in krita: it's gnome doing something weirdly non-standard, let the gnome
developers add support to relevant applications and toolkits.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370722] Krita crashes when choosing OK in the configuration window

2016-10-18 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370722

--- Comment #4 from Boudewijn Rempt  ---
The guidelines for Krita are here:
https://docs.krita.org/KritaFAQ#How_can_I_produce_a_backtrace_on_Windows.3F

But, yes, that's a crash in the Intel opengl driver. Sounds like Krita gets
confused because you've got two gpu's in your system. You should tell Windows
to make Krita use the nvidia gpu. It's not something we can control from within
Krita.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 371037] Krita constantly freezes when painting, toggling between layers, or changing frames in animation timeline.

2016-10-18 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371037

Boudewijn Rempt  changed:

   What|Removed |Added

 CC||b...@valdyas.org

--- Comment #1 from Boudewijn Rempt  ---
Given that lots of people don't experience this issue, it's likely that it's
something with your setup, of course. 

Could the pause be when Krita is autosaving? You can change the autosave
interval to check, or disable it altogether. if so, are you saving to a network
disk? 

Another possibility could be running out of ram, if you're making big
animations with many layers and frames at a high channel depth, when the swap
can start kicking in. You can check the memory settings for the maximum memory
Krita can use and check the statusbar for a memory warning.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 342105] [HUION] Cannot right click with the Pen of Huion H610 Pro

2016-10-16 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=342105

--- Comment #51 from Boudewijn Rempt  ---
That's a different bug: https://bugs.kde.org/show_bug.cgi?id=361706 -- also
caused by hardware manufacturers and driver developers being morons who don't
implement the standard, but different hardware and different driver, and so it
would need a different workaround, if a workaround is possible.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370880] G'Mic Colorize [interactive] fails because no display available

2016-10-15 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370880

Boudewijn Rempt  changed:

   What|Removed |Added

 CC||b...@valdyas.org
 Resolution|--- |FIXED
 Status|UNCONFIRMED |RESOLVED

--- Comment #1 from Boudewijn Rempt  ---
Hi,

This issue is fixed in 3.0.1.90.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370896] cancel an insert layer image crash krita

2016-10-15 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370896

Boudewijn Rempt  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
 Resolution|--- |FIXED
  Latest Commit||http://commits.kde.org/krit
   ||a/edda7d76bbfb8948bc12aa5ff
   ||b9b5e5153073101

--- Comment #2 from Boudewijn Rempt  ---
Git commit edda7d76bbfb8948bc12aa5ffb9b5e5153073101 by Boudewijn Rempt.
Committed on 15/10/2016 at 10:28.
Pushed by rempt into branch 'master'.

Cancelling the import means that there's no image, but there is
a temporary KisDocument, so KisDocument cannot assume that there's
going to be an image as its being deleted.

M  +10   -9libs/ui/KisDocument.cpp

http://commits.kde.org/krita/edda7d76bbfb8948bc12aa5ffb9b5e5153073101

-- 
You are receiving this mail because:
You are watching all bug changes.


[Spectacle] [Bug 363630] Crash: Spectacle hangs when using save as on a desktop where the default file dialog it gtk's

2016-10-14 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=363630

--- Comment #4 from Boudewijn Rempt  ---
It is reproducible with 15.12.3; I tried to update yesterday but apparently
opensuse leap doesn't have a newer version yet.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 369480] Preset choosing bugs: stylus tip-presets don't switch properly, / key broken

2016-10-14 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=369480

Boudewijn Rempt  changed:

   What|Removed |Added

  Latest Commit||http://commits.kde.org/krit
   ||a/62c4b49ba9876a6a1f62a3d5c
   ||1f264d19acd8eee
 Resolution|--- |FIXED
 Status|CONFIRMED   |RESOLVED

--- Comment #4 from Boudewijn Rempt  ---
Git commit 62c4b49ba9876a6a1f62a3d5c1f264d19acd8eee by Boudewijn Rempt.
Committed on 14/10/2016 at 08:52.
Pushed by rempt into branch 'master'.

It's inevitable to do that check -- we have several preset selector
widgets, and selecting a preset, sets the current preset on all the other
widgets, which then emit a signal to tell the world the preset has been
changed. It would be good if that didn't happen, and it's possible to
achieve that by blocking signals, but that's not robust: it's always
possible something else selects a preset and starts the updating.

Closes T3893

M  +29   -24   libs/ui/kis_paintop_box.cc
M  +5-5libs/ui/kis_paintop_box.h
M  +0-1libs/widgets/KoResourceItemChooser.cpp

http://commits.kde.org/krita/62c4b49ba9876a6a1f62a3d5c1f264d19acd8eee

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 369497] Crash when creating new large document directly after starting Krita

2016-10-14 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=369497

--- Comment #8 from Boudewijn Rempt  ---
Hm. that last backtrace shows a crash happening in the opengl driver. Did you
by any chance enable OpenColorIO in the LUT docker?

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370720] Keyboard shortcut list is incomplete when opening Krita

2016-10-14 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370720

Boudewijn Rempt  changed:

   What|Removed |Added

 CC||b...@valdyas.org
 Status|UNCONFIRMED |CONFIRMED
 Ever confirmed|0   |1

--- Comment #1 from Boudewijn Rempt  ---
Hi,

Thanks for your report. I can confirm the issue. This was supposed to be fixed
in 3.0, but I guess we either have a regression, or missed something.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370722] Krita crashes when choosing OK in the configuration window

2016-10-14 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370722

Boudewijn Rempt  changed:

   What|Removed |Added

 CC||b...@valdyas.org

--- Comment #1 from Boudewijn Rempt  ---
Hi,

I'm sorry, but I cannot reproduce the issue with 3.0.1.1 on my Windows 10
laptop. Can you try to reproduce with the 3.0.1.90 debug build
(http://download.kde.org/unstable/krita/3.0.1.90/krita-3.0.1.90-x64-dbg.zip)
and see whether you get a backtrace? Testing with 2.9 is not useful to us,
there won't be any 2.9 series releases anymore.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370723] Unlock the interface even if there are no open documents

2016-10-14 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370723

Boudewijn Rempt  changed:

   What|Removed |Added

 CC||b...@valdyas.org
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WONTFIX

--- Comment #1 from Boudewijn Rempt  ---
Sorry, while I agree that it would be nice, it just is not possible in a
reliable way.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370537] Duplicating animated layer and moving frames (of the duplicated layer) to the beginning of the timeline crashes Krita

2016-10-13 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370537

Boudewijn Rempt  changed:

   What|Removed |Added

 CC||b...@valdyas.org
 Status|UNCONFIRMED |CONFIRMED
 Ever confirmed|0   |1

--- Comment #2 from Boudewijn Rempt  ---
Hi Silva,

I cannot reproduce the crash, but I get a hang when trying to move the frames
of the original layer. Something definitely is up here.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370496] crash while using the clone tool

2016-10-13 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370496

Boudewijn Rempt  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|UNCONFIRMED |RESOLVED
 CC||b...@valdyas.org

--- Comment #1 from Boudewijn Rempt  ---
Hi Francesco,

This issue should have been fixed in 3.0.1.1 and git master. We only saw it
happen on OSX and Windows, but apparently Gentoo can trigger it too... Can you
check whether there's a way for you to update?

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370519] Only opening once during a computer session

2016-10-13 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370519

Boudewijn Rempt  changed:

   What|Removed |Added

  Component|Documentation   |general
 CC||b...@valdyas.org

--- Comment #1 from Boudewijn Rempt  ---
Does this always happen? Does the task manager still show a running krita
process?

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370537] Duplicating animated layer and moving frames (of the duplicated layer) to the beginning of the timeline crashes Krita

2016-10-13 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370537

--- Comment #1 from Boudewijn Rempt  ---
*** Bug 370538 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370538] Duplicating animated layer and moving frames (of the duplicated layer) to the beginning of the timeline crashes Krita

2016-10-13 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370538

Boudewijn Rempt  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|UNCONFIRMED |RESOLVED
 CC||b...@valdyas.org

--- Comment #1 from Boudewijn Rempt  ---


*** This bug has been marked as a duplicate of bug 370537 ***

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370562] Crash after removing a frame that has an active transform tool selection

2016-10-13 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370562

Boudewijn Rempt  changed:

   What|Removed |Added

 CC||b...@valdyas.org
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

--- Comment #2 from Boudewijn Rempt  ---
Hi Miia,

Thanks for your report. I fixed the bug, and the fix will be in the next beta
build.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370566] Larger documents do not get saved with Save as

2016-10-13 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370566

Boudewijn Rempt  changed:

   What|Removed |Added

 CC||b...@valdyas.org

--- Comment #1 from Boudewijn Rempt  ---
Hi Miia,

Does this happen every time? Just like with
https://bugs.kde.org/show_bug.cgi?id=369497, I'm unable to reproduce the issue
on any of my Windows 10 systems :-(

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370455] Brush cursor changes to arrow on certain linear areas on the canvas

2016-10-13 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370455

Boudewijn Rempt  changed:

   What|Removed |Added

 CC||b...@valdyas.org

--- Comment #4 from Boudewijn Rempt  ---
Did changing window manager make a difference?

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370572] Crashing after applying transform mask to a cloned layer

2016-10-13 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370572

Boudewijn Rempt  changed:

   What|Removed |Added

 CC||b...@valdyas.org
 OS|other   |MS Windows
   Platform|Windows CE  |MS Windows

--- Comment #1 from Boudewijn Rempt  ---
Hi,

Can you check with 3.0.1.1? I think I've already fixed that issue. At least, I
cannot reproduce it with 3.0.1.1.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370602] Crash when adding layers together while selection active

2016-10-13 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370602

Boudewijn Rempt  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED
   Platform|Windows CE  |MS Windows
 CC||b...@valdyas.org

--- Comment #1 from Boudewijn Rempt  ---
Hi Hjorth,

I already fixed this bug, and the fix will be in the next beta build for Krita
3.1.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 370604] Deform Brush doesn't respect alpha

2016-10-13 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370604

Boudewijn Rempt  changed:

   What|Removed |Added

 CC||b...@valdyas.org

--- Comment #2 from Boudewijn Rempt  ---
Hm, the deform brush has always behaved like this, so I'm not sure it's a bug
or the way Lukas designed the brush engine... The behaviour you're after is
implemented in the liquify option of the transform tool.

-- 
You are receiving this mail because:
You are watching all bug changes.


[krita] [Bug 369413] Make it possible to have brushes bigger then 1000 pixels

2016-10-13 Thread Boudewijn Rempt via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=369413

Boudewijn Rempt  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #3 from Boudewijn Rempt  ---


*** This bug has been marked as a duplicate of bug 334123 ***

-- 
You are receiving this mail because:
You are watching all bug changes.


  1   2   3   4   5   6   7   8   9   10   >