KDE CI: Applications okular stable-kf5-qt5 FreeBSDQt5.9 - Build # 46 - Unstable!

2018-04-06 Thread CI System
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Applications%20okular%20stable-kf5-qt5%20FreeBSDQt5.9/46/
 Project:
Applications okular stable-kf5-qt5 FreeBSDQt5.9
 Date of build:
Fri, 06 Apr 2018 23:15:12 +
 Build duration:
17 min and counting
   JUnit Tests
  Name: (root) Failed: 2 test(s), Passed: 14 test(s), Skipped: 0 test(s), Total: 16 test(s)Failed: TestSuite.mainshelltestFailed: TestSuite.parttest

KDE CI: Applications okular kf5-qt5 FreeBSDQt5.9 - Build # 57 - Still Unstable!

2018-04-06 Thread CI System
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Applications%20okular%20kf5-qt5%20FreeBSDQt5.9/57/
 Project:
Applications okular kf5-qt5 FreeBSDQt5.9
 Date of build:
Fri, 06 Apr 2018 23:16:22 +
 Build duration:
16 min and counting
   JUnit Tests
  Name: (root) Failed: 1 test(s), Passed: 15 test(s), Skipped: 0 test(s), Total: 16 test(s)Failed: TestSuite.mainshelltest

D12001: use correct filepath

2018-04-06 Thread Fabian Kosmale
This revision was automatically updated to reflect the committed changes.
Closed by commit R223:f8f7a77fedc0: use correct filepath (authored by fabiank).

REPOSITORY
  R223 Okular

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D12001?vs=31528=31534

REVISION DETAIL
  https://phabricator.kde.org/D12001

AFFECTED FILES
  ui/pageviewannotator.cpp

To: fabiank, #okular, hetzenecker, aacid
Cc: aacid, #okular, michaelweghorn, ngraham


D12001: use correct filepath

2018-04-06 Thread Albert Astals Cid
aacid accepted this revision.
aacid added a comment.
This revision is now accepted and ready to land.


  Ouch :D

REPOSITORY
  R223 Okular

BRANCH
  fixWarnings

REVISION DETAIL
  https://phabricator.kde.org/D12001

To: fabiank, #okular, hetzenecker, aacid
Cc: aacid, #okular, michaelweghorn, ngraham


D10792: Raise annotation window when clicking on annotation

2018-04-06 Thread Albert Astals Cid
aacid added a comment.


  In D10792#241405 , @simgunz wrote:
  
  > Thanks to your suggestions I made some progresses.
  >
  > My current autotest looks as in the block below.
  >
  > Problems:
  >
  > 1. If I do not export `AnnotWindow` and call `QVERIFY( 
part.m_pageView->findChildren().size() == 1 )` it fails, while 
calling `QVERIFY( part.m_pageView->findChildren().size() == 1 )` 
would succeed.
  > 2. The value returned by ` annot1->boundingRectangle().center(); ` is 
wrong. Moreover if I I pass to `mouseMove` a point within the coordinates I 
specify when I construct the annotation the mouse moves to the wrong position. 
In particular the mouse moves to a Y position way below the annotation. So 
either I am missing something or there is a bug.
  
  
  There's a "bug" in the test, you're opening a two page file, so the height 
variable  is the height of the two pages, and then all the math fails when 
trying to find the proper y, changing to open file1.pdf makes it better.
  
  https://paste.kde.org/phoqbec1x "WORKS" in my computer, you still need to add 
more stuff to the end of the test, right? at least a verify :)
  
  > 3. How do I click on the annotation window?
  > 
  >   These two commands both fail ``` 
QTest::mouseClick(part.m_pageView->viewport(), Qt::LeftButton, Qt::NoModifier, 
QPoint(width * 0.1,  height * 0.06)); // The window is under the mouse 
QTest::mouseClick(win2, Qt::LeftButton, Qt::NoModifier, QPoint(width * 0.1,  
height * 0.06)); // win2 is the annotation window widget (under the mouse again)
  > 
  >   ```
  > 
  >   Isn't it possible to call mouseClick without specifying the target 
widget, as if I would click manually so that the top widget is the target of 
the click?
  
  It's a bit tricky, check what i did on the paste. Probably there's a better 
way to do it, but it's a bit late now so this works for me.

REPOSITORY
  R223 Okular

REVISION DETAIL
  https://phabricator.kde.org/D10792

To: simgunz, #okular, aacid
Cc: ngraham, #okular, michaelweghorn, aacid


D12001: use correct filepath

2018-04-06 Thread Fabian Kosmale
fabiank added reviewers: Okular, hetzenecker.

REPOSITORY
  R223 Okular

REVISION DETAIL
  https://phabricator.kde.org/D12001

To: fabiank, #okular, hetzenecker
Cc: #okular, michaelweghorn, ngraham, aacid


D12001: use correct filepath

2018-04-06 Thread Fabian Kosmale
fabiank created this revision.
Restricted Application added a subscriber: Okular.
Restricted Application added a project: Okular.
fabiank requested review of this revision.

REVISION SUMMARY
  Seems like someone forgot to consistently apply a change. Maybe the path
  construction should be factored into a reusable lambda?

TEST PLAN
  Open Okular, open settings > configure Okular. Without the patch, you'll get a
  "QFSFileEngine::open: No file name specified" warning, with the patch it
  disappears. Note that there is also an unrelated "Illegal icon group:  7"
  warning from KIconThemes, but I'm 99% certain that this is on KIconThemes 
doing
  a bogus check in KIconEffect::apply, not on Okular

REPOSITORY
  R223 Okular

BRANCH
  fixWarnings

REVISION DETAIL
  https://phabricator.kde.org/D12001

AFFECTED FILES
  ui/pageviewannotator.cpp

To: fabiank
Cc: #okular, michaelweghorn, ngraham, aacid


D10797: Add asterisk when an annotation is associated to non-empty popup

2018-04-06 Thread Albert Astals Cid
aacid added a comment.


  In D10797#241432 , @simgunz wrote:
  
  > What is the best way to implement this? Given the call to i18n I guess I 
cannot just append a suffix to ret.
  >  Should I do for each annotation type something like:
  >
  >   bool hasComment = !ann->contents().isEmpty();
  >   ret =  hasComment ? i18n( "Highlight with Comment" ) : i18n( "Highlight 
Note" );
  >
  
  
  Yeah, that's it. Make the bool const for extra points :)
  
  > I guess I do not need to add "with Comment" to Pop-up note and Inline note 
given that they always have a comment.
  
  Pop-up note can have empty contents, but i guess since contents it's its main 
focus we can leave it out?

REPOSITORY
  R223 Okular

REVISION DETAIL
  https://phabricator.kde.org/D10797

To: simgunz, #okular, aacid
Cc: aacid, ngraham, michaelweghorn


D10797: Add asterisk when an annotation is associated to non-empty popup

2018-04-06 Thread Simone Gaiarin
simgunz added a comment.


  What is the best way to implement this? Given the call to i18n I guess I 
cannot just append a suffix to ret.
  Should I do for each annotation type something like:
  
bool hasComment = !ann->contents().isEmpty();
ret =  hasComment ? i18n( "Highlight with Comment" ) : i18n( "Highlight 
Note" );
  
  I guess I do not need to add "with Comment" to Pop-up note and Inline note 
given that they always have a comment.

REPOSITORY
  R223 Okular

REVISION DETAIL
  https://phabricator.kde.org/D10797

To: simgunz, #okular, aacid
Cc: aacid, ngraham, michaelweghorn


D10792: Raise annotation window when clicking on annotation

2018-04-06 Thread Simone Gaiarin
simgunz added a comment.


  Thanks to your suggestions I made some progresses.
  
  My current autotest looks as in the block below.
  
  Problems:
  
  1. If I do not export `AnnotWindow` and call `QVERIFY( 
part.m_pageView->findChildren().size() == 1 )` it fails, while 
calling `QVERIFY( part.m_pageView->findChildren().size() == 1 )` 
would succeed.
  
  2. The value returned by ` annot1->boundingRectangle().center(); ` is wrong.
  
  Moreover if I I pass to `mouseMove` a point within the coordinates I specify 
when I construct the annotation the mouse moves to the wrong position.
  In particular the mouse moves to a Y position way below the annotation.
  So either I am missing something or there is a bug.
  
  Example where it fails:
  
annot1->setBoundingRectangle( Okular::NormalizedRect( 0.8, 0.1, 0.85, 0.15 
) );

QTest::mouseMove(part.m_pageView->viewport(), QPoint(width * 0.82,  height 
* 0.13));
  
  For now I am using values find through trial and error.
  
  3. How do I click on the annotation window?
  
  These two commands both fail
  
QTest::mouseClick(part.m_pageView->viewport(), Qt::LeftButton, 
Qt::NoModifier, QPoint(width * 0.1,  height * 0.06)); // The window is under 
the mouse
QTest::mouseClick(win2, Qt::LeftButton, Qt::NoModifier, QPoint(width * 0.1, 
 height * 0.06)); // win2 is the annotation window widget (under the mouse 
again)
  
  Isn't it possible to call mouseClick without specifying the target widget, as 
if I would click manually so that the top widget is the target of the click?
  
void PartTest::testAnnotWindow()
{
QVariantList dummyArgs;
Okular::Part part(nullptr, nullptr, dummyArgs);
QVERIFY(openDocument(, QStringLiteral(KDESRCDIR 
"data/file2.pdf")));
part.widget()->show();
QVERIFY(QTest::qWaitForWindowExposed(part.widget()));

const int width =  part.m_pageView->horizontalScrollBar()->maximum() +
   part.m_pageView->viewport()->width();
const int height = part.m_pageView->verticalScrollBar()->maximum() +
   part.m_pageView->viewport()->height();

part.m_document->setViewportPage(0);

// wait foqqr pixmap
QTRY_VERIFY(part.m_document->page(0)->hasPixmap(part.m_pageView));

QMetaObject::invokeMethod(part.m_pageView, "slotSetMouseNormal");

QCOMPARE(part.m_document->currentPage(), 0u);


// Create two distinct text annotations
Okular::Annotation * annot1 = new Okular::TextAnnotation();
annot1->setBoundingRectangle( Okular::NormalizedRect( 0.8, 0.1, 0.85, 
0.15 ) );
annot1->setContents( QStringLiteral("Annot contents 11") );

Okular::Annotation *annot2 = new Okular::TextAnnotation();
annot2->setBoundingRectangle( Okular::NormalizedRect(  0.8, 0.3, 0.85, 
0.35 ) );
annot2->setContents( QStringLiteral("Annot contents 22") );

int waitDealy = 1000;

// Add annot1 and annot2 to document
QTest::qWait(waitDealy);
part.m_document->addPageAnnotation( 0, annot1 );
QTest::qWait(waitDealy);
part.m_document->addPageAnnotation( 0, annot2 );
QTest::qWait(waitDealy);
QVERIFY( part.m_document->page( 0 )->annotations().size() == 2 );

// Double click the first annotation to open its window (move mouse for 
visual feedback)
//NormalizedPoint pt = annot1->boundingRectangle().center();
QTest::mouseMove(part.m_pageView->viewport(), QPoint(width * 0.81,  
height * 0.06));
//QTest::mouseMove(part.m_pageView->viewport(), QPoint(width * pt.x, 
height * pt.y));
QTest::qWait(waitDealy);
QTest::mouseDClick(part.m_pageView->viewport(), Qt::LeftButton, 
Qt::NoModifier, QPoint(width * 0.81,  height * 0.06));
//QTest::mouseDClick(part.m_pageView->viewport(), Qt::LeftButton, 
Qt::NoModifier, QPoint(width * pt.x, height * pt.y));
QTest::qWait(waitDealy);
QVERIFY( part.m_pageView->findChildren().size() == 1 );
// Verify that the window is visible
AnnotWindow * win1 = part.m_pageView->findChild();
QVERIFY( !win1->visibleRegion().isEmpty() );

// Double click the second annotation to open its window (move mouse 
for visual feedback)
QTest::mouseMove(part.m_pageView->viewport(), QPoint(width * 0.81,  
height * 0.16));
QTest::qWait(waitDealy);
QTest::mouseDClick(part.m_pageView->viewport(), Qt::LeftButton, 
Qt::NoModifier, QPoint(width * 0.81,  height * 0.16));
QTest::qWait(waitDealy);
QVERIFY( part.m_pageView->findChildren().size() == 2 );
// Verify that the first window is hidden covered by the second, which 
is visible
QList lstWin = part.m_pageView->findChildren();
QFrame * win2;
if (lstWin[0] == win1) {
win2 = lstWin[1];
} else {
win2 = lstWin[0];
}
  

[okular] [Bug 358061] Improved/consistent mechanism to add/modify inline note

2018-04-06 Thread Christoph Feck
https://bugs.kde.org/show_bug.cgi?id=358061

Christoph Feck  changed:

   What|Removed |Added

Summary|[Usability] |Improved/consistent
   |Improved/consistent |mechanism to add/modify
   |mechanism to add/modify |inline note
   |inline note |

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 392806] Lock horizontal scroll

2018-04-06 Thread Albert Astals Cid
https://bugs.kde.org/show_bug.cgi?id=392806

Albert Astals Cid  changed:

   What|Removed |Added

 CC||aa...@kde.org
   Severity|normal  |wishlist

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 387882] Presentation mode only ever uses non-continuous single page view

2018-04-06 Thread Albert Astals Cid
https://bugs.kde.org/show_bug.cgi?id=387882

--- Comment #14 from Albert Astals Cid  ---
This is not a user support channel, i'm sorry you don't know how to read the
manual to figure out how to remove the side bar and the page bar. I advise you
try to ask in places where we do user support happens
https://www.kde.org/support/ like the forum.

And no, this is not a tragedy, children dying of hunger is a tragedy.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 392806] New: Lock horizontal scroll

2018-04-06 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=392806

Bug ID: 392806
   Summary: Lock horizontal scroll
   Product: okular
   Version: unspecified
  Platform: Other
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: okular-devel@kde.org
  Reporter: t.soer...@gmail.com
  Target Milestone: ---

I have a feature request for a toggle that locks scrolling (with touchpad) in
the horizontal direction. This is particularly useful when Okular occupies say
the left half of the screen and is zoomed in on a narrow fit to only view text
and not the whitespace/margins beside it.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 387882] Presentation mode only ever uses non-continuous single page view

2018-04-06 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=387882

--- Comment #13 from gbod...@gmail.com ---
If it's true, the developers won't fix this, it is indeed a tragedy, and no one
explained how to remove the borders as posted below.  Whoever is responding
seems to be of a single mind set, and doesn't understand the needs of a
musician wishing to "present" sheet music to himself at the piano.  I'm very
sorry that Linux developers sometimes are unable to see the larger picture.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 390356] wrong render for arabic xps

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=390356

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 391385] Going to the presentation mode twice closes the document

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=391385

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 392682] Okular ignores umask on save file as

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=392682

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 336617] Feature request: disable fit-to-page while printing.

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=336617

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 392463] Okular segfaults all the time when used with emacs/latex

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=392463

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 351849] Margins often cut when printing

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=351849

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 391972] okular slower than evince at rendering a pdf

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=391972

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 392106] opening (e)PS files from the commandline

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=392106

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 391894] Zoom out doesn't work when zoom is Fit Width

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=391894

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 373957] okular-17.12.3: Settings dialog default size does not match the content

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=373957

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 391625] Okular displays blurry images when opening epub files

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=391625

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 391505] Okular doesn't load cups default options for printers

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=391505

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 391407] Okular cannot display next page with hand tool

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=391407

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 381328] Okular crashes when editing forms in a PDF that's located inside an archive

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=381328

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 201092] Drag to scroll in Okular's text mode and KDE wide

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=201092

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 391352] Trim margins breaks mouse wheel zoom out

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=391352

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 342927] More Vim-like shortcuts

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=342927

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 390706] Two-finger touchscreen zoom gesture needs final refresh

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=390706

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 389668] Saving a pdf switches from thumbnail view in sidebar to contents view

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=389668

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 389953] okular ignores paper size when printing

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=389953

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 389947] touchpad scrolling: Okular jumps several lines down first when scrolling after the cursor moves out and back again

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=389947

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 346979] Touch control and basic gestures

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=346979

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 173896] Sent-to menu entry or send-via-email menu-entry

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=173896

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 389669] Searching within a PDF with Boolean Logic

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=389669

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 389385] Crash on closing Okular

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=389385

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 389206] Efficiently generate print data when Qt's new "arbitrary pages" feature is used

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=389206

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 389216] Export Markdown to PDF segfaults

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=389216

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 333981] improve annotation movement feedback performance

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=333981

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 389332] Okular ignores printer colour settings

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=389332

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 325119] Size of inline notes not adjusted to font size and does not respect drawn boundaries

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=325119

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 358061] [Usability] Improved/consistent mechanism to add/modify inline note

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=358061

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 389142] Save as does not work - it says "... try to save it in another ...", but annotations are not saved

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=389142

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 275371] Stamp annotations are drawn by both poppler and Okular

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=275371

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 353401] Feature requst: "typewriter" annotation tool

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=353401

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 376459] Add crossout and replace annotations

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=376459

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 322231] Okular cannot stretch pages smaller than A4 size, to print at A4 size

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=322231

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 344645] Printed PDF slides, created with latex beamer class, are empty.

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=344645

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 389090] Okular crashes when scrolling

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=389090

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 315930] Ability to sign a PDF with my scanned signature (i.e. picture file) like in Adobe Acrobat

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=315930

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 387834] Okular does not display replies to "sticky notes"

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=387834

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 388288] some thumbnail of pdf not shown in dolphin, some are shown

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=388288

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 388511] "Do you want to allow [presentation mode]?" is inaccurate and misleading.

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=388511

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 179555] Okular doesn't recognize chm files

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=179555

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 169511] slide duration files for okular

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=169511

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 388450] Popup-note annotations don't scroll with the document

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=388450

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 388458] Wrong size of rectangles around annotation icons (e.g. popup note) for PDF documents

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=388458

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 388175] core dump while opening a specific PDF document

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=388175

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 387639] Annotations are only partially selectable on a hidpi screen

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=387639

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 374406] Cannot set print margins to zero - renders Okular useless for printing labels

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=374406

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 388228] Okular crashes when annotating a piece of text

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=388228

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 388081] Save annotation inside pdf by default

2018-04-06 Thread Simon Andric
https://bugs.kde.org/show_bug.cgi?id=388081

Simon Andric  changed:

   What|Removed |Added

 CC||simonandr...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

KDE CI: Applications okular kf5-qt5 FreeBSDQt5.9 - Build # 56 - Unstable!

2018-04-06 Thread CI System
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Applications%20okular%20kf5-qt5%20FreeBSDQt5.9/56/
 Project:
Applications okular kf5-qt5 FreeBSDQt5.9
 Date of build:
Fri, 06 Apr 2018 09:20:59 +
 Build duration:
16 min and counting
   JUnit Tests
  Name: (root) Failed: 2 test(s), Passed: 14 test(s), Skipped: 0 test(s), Total: 16 test(s)Failed: TestSuite.mainshelltestFailed: TestSuite.parttest

[okular] [Bug 351849] Margins often cut when printing

2018-04-06 Thread Germano Massullo
https://bugs.kde.org/show_bug.cgi?id=351849

Germano Massullo  changed:

   What|Removed |Added

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

--- Comment #22 from Germano Massullo  ---
(In reply to Michael Weghorn from comment #19) 
> How is the printer connected (e.g. a locally connected USB printer or a
> network printer or a printer shared from another host)?

Network printer directly connected to the network

> 
> Is there any file '/etc/cups/lpoptions' or '$HOME/.cups/lpoptions' present?

Both yes

> 
> What happens if you print the job file attached in comment 17 directly from
> the command line using the command 'lp -d  d01250-001' from
> a directory where this file is located? Is the output the same?

lp: No such file or directory

-- 
You are receiving this mail because:
You are the assignee for the bug.

KDE CI: Applications okular stable-kf5-qt5 FreeBSDQt5.9 - Build # 45 - Fixed!

2018-04-06 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Applications%20okular%20stable-kf5-qt5%20FreeBSDQt5.9/45/
 Project:
Applications okular stable-kf5-qt5 FreeBSDQt5.9
 Date of build:
Fri, 06 Apr 2018 09:20:04 +
 Build duration:
6 min 52 sec and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 16 test(s), Skipped: 0 test(s), Total: 16 test(s)

[okular] [Bug 351849] Margins often cut when printing

2018-04-06 Thread Germano Massullo
https://bugs.kde.org/show_bug.cgi?id=351849

--- Comment #21 from Germano Massullo  ---
Created attachment 111870
  --> https://bugs.kde.org/attachment.cgi?id=111870=edit
error_log

I changed the 'ErrorLog' directive in '/etc/cups/cups-files.conf' to 'ErrorLog
/var/log/cups/error_log'

# lpstat -v
dispositivo per Officejet_7110: hp:/net/Officejet_7110_series?ip=**removed by
me**

-- 
You are receiving this mail because:
You are the assignee for the bug.

[okular] [Bug 391385] Going to the presentation mode twice closes the document

2018-04-06 Thread Albert Astals Cid
https://bugs.kde.org/show_bug.cgi?id=391385

--- Comment #4 from Albert Astals Cid  ---
Can you attach the valgrind log of when you do so anyway? It may contain
interesting information still.

-- 
You are receiving this mail because:
You are the assignee for the bug.