From 5a41fd805ef39312214440cd6b4fb2f6ea1d6e52 Mon Sep 17 00:00:00 2001 From: Albert Astals Cid Date: Fri, 21 Jan 2005 23:09:00 +0000 Subject: [PATCH] Presentation mode is now Ctrl+Shift+p instead of F9 because it was colliding with Konqueror's toggle sidebar svn path=/trunk/kdegraphics/kpdf/; revision=380993 --- TODO | 2 +- part.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/TODO b/TODO index 0e8f3af15..bfa0a06ca 100644 --- a/TODO +++ b/TODO @@ -23,7 +23,6 @@ High priority 3.4 features (deadline is 2k5-Feb-2): -> rmb popup for bookmarking pages on thumbnailslist, showing bkmarked pages and go to next/previous bookmark actions (support for showing bookmarked pages is already in, but disabled) --> evaluate wether to change F9 as the default presentation shortcut More items (first items will enter 'In progress list' first): -> presentation: provide a pageX/totalPages indicator in addition to the circle one @@ -91,6 +90,7 @@ More items (first items will enter 'In progress list' first): -> export: export to other formats keeping formatting (a dream.. except for PNG :-) (PS is easy, we just have PSOutputDev that does it :-D) Done (newest features come first): +-> CHG: Presentation mode is now Ctrl+Shift+p instead of F9 because it was colliding with Konqueror's toggle sidebar -> FIX: various in memory unallocator, preload with single pages, pageview -> FIX: optimized pageView (removed 1 waster req on start, lowered reqs) -> FIX: memory unloading order and hard swap avoiding diff --git a/part.cpp b/part.cpp index 2ab6b7c25..b8e2514be 100644 --- a/part.cpp +++ b/part.cpp @@ -183,7 +183,7 @@ Part::Part(QWidget *parentWidget, const char *widgetName, m_showProperties = new KAction(i18n("&Properties"), "info", 0, this, SLOT(slotShowProperties()), ac, "properties"); m_showProperties->setEnabled( false ); - m_showPresentation = new KAction( i18n("P&resentation"), "kpresenter_kpr", "F9", this, SLOT(slotShowPresentation()), ac, "presentation"); + m_showPresentation = new KAction( i18n("P&resentation"), "kpresenter_kpr", "Ctrl+Shift+P", this, SLOT(slotShowPresentation()), ac, "presentation"); m_showPresentation->setEnabled( false ); // attach the actions of the 2 children widgets too