diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-12-03 19:46:34 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-12-03 19:46:51 +0900 |
commit | efbb0f319028293b9096d875204cfadd996ddfa2 (patch) | |
tree | edfd9f7dd65aede49967aa4fa59b040374585fe3 | |
parent | 89fc14b7fc82278d5751266665ad8b74f793e210 (diff) | |
download | krusader-efbb0f319028293b9096d875204cfadd996ddfa2.tar.gz krusader-efbb0f319028293b9096d875204cfadd996ddfa2.zip |
Added icon to Properties popup menu entry.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit f7afbdd827a0c5285a55e09d6a644396e47cfbbd)
-rw-r--r-- | krusader/krusader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/krusader/krusader.cpp b/krusader/krusader.cpp index 2545aa5..cae732c 100644 --- a/krusader/krusader.cpp +++ b/krusader/krusader.cpp @@ -607,7 +607,7 @@ void Krusader::setupActions() { SLOTS, TQT_SLOT( createChecksum() ), actionCollection(), "create checksum" ); actMatchChecksum = new TDEAction( i18n( "Verify Checksum..." ), "match_checksum", 0, SLOTS, TQT_SLOT( matchChecksum() ), actionCollection(), "match checksum" ); - actProperties = new TDEAction( i18n( "&Properties..." ), 0, ALT+Key_Enter, + actProperties = new TDEAction( i18n( "&Properties..." ), "edit", ALT+Key_Enter, SLOTS, TQT_SLOT( properties() ), actionCollection(), "properties" ); actPack = new TDEAction( i18n( "Pac&k..." ), "kr_arc_pack", ALT + Key_P, SLOTS, TQT_SLOT( slotPack() ), actionCollection(), "pack" ); |