Version: (using KDE KDE 3.5.4) Installed from: SuSE RPMs Currently it is too complicated -- why having special dialog with print and save as? Why not simply _use_ the acquired screen shot, and the print, save, whatever in normal fashion. Just like Gimp.
SVN commit 587602 by berger: remove the print button (save button was removed in r587018) BUG:134527 M +1 -0 ksnapshot.cpp --- branches/koffice/1.6/koffice/krita/plugins/viewplugins/screenshot/ksnapshot.cpp #587601:587602 @@ -77,6 +77,7 @@ Q_CHECK_PTR(mainWidget); mainWidget->btnSave->hide(); + mainWidget->btnPrint->hide(); connect(mainWidget, SIGNAL(startImageDrag()), SLOT(slotDragSnapshot())); connect( mainWidget, SIGNAL( newClicked() ), SLOT( slotGrab() ) );
This is not exactly what I have in mind :-) By "simplify" I mean there should be an easy an intuitive way to get this image. Currently --> screenshot -> save -> close -> open. In gimp it is one button click and you get your screenshot.
hum currently, I do screenshot -> ok and I have it, I might have to resize the image thought, which add one extra step "resize image to fit current layer"
> currently, I do screenshot -> ok and I have it, 1) what for is that confirmation "ok"? it is unnecessary step 2) when I click "ok" the dialog is closed, nothing else, I don't have screenshot pasted
in fact the extra step "resize image to fit current layer" shouldn't be usefull, because, the real path would be to press "print screen" and have ksnapshot offering to open it in krita, there was some talk on kde-core-devel mailing list about this some time ago, but it's more a ksnapshot bug than krita
1) hum ok, I will remove that step as well 2) that's a bug then, but I can't reproduce it, what version of krita are you using ?
> in fact the extra step "resize image to fit current layer" shouldn't be > usefull, I'll comment that when I am able to get the screenshot :-) > 1) hum ok, I will remove that step as well Thank you. > 2) that's a bug then, but I can't reproduce it, what version of krita are > you using ? 1.5.2. How to reproduce: a) run Krita b) start new RGB 1024x768 for example c) go to screenshot d) new snapshot e) ok -> nothing happens
hum, I don't have that problem with 1.6, I don't see any fix in the screenshot plug-in, maybe something has change elsewhere and fix the problem between 1.5.2 and 1.6. There isn't much I can do on this right now, if you still have the problem with 1.6, then do not hesitate to report it and we will try to find what's going on.
SVN commit 587833 by berger: autoclose/add the screenshot after taking it CCBUG:134527 M +3 -1 ksnapshot.cpp --- branches/koffice/1.6/koffice/krita/plugins/viewplugins/screenshot/ksnapshot.cpp #587832:587833 @@ -109,6 +109,7 @@ accel->insert( "New3", Qt::Key_Space, this, SLOT(slotGrab())); mainWidget->btnNew->setFocus(); + } KSnapshot::~KSnapshot() @@ -435,7 +436,8 @@ updatePreview(); QApplication::restoreOverrideCursor(); modified = true; - show(); +// show(); + slotOk(); } void KSnapshot::setTime(int newTime)
You need to log in before you can comment on or make changes to this bug.