Package Details: pcmanfm-git r1660.be8c60d-1

Git Clone URL: https://aur.archlinux.org/pcmanfm-git.git (read-only, click to copy)
Package Base: pcmanfm-git
Description: Extremely fast and lightweight file manager
Upstream URL: https://lxde.org/
Licenses: GPL
Conflicts: pcmanfm
Provides: pcmanfm
Submitter: tdy
Maintainer: tdy
Last Packager: tdy
Votes: 119
Popularity: 0.000000
First Submitted: 2010-01-16 01:05 (UTC)
Last Updated: 2021-01-22 04:44 (UTC)

Dependencies (6)

Required by (6)

Sources (1)

Latest Comments

« First ‹ Previous 1 2 3 4 5 Next › Last »

ka2107 commented on 2012-01-20 16:33 (UTC)

@anonymous-arch: Has this patch been accepted upstream?

anonymous-arch commented on 2012-01-20 14:10 (UTC)

The right-click crash is a call to a NULL function pointer on line 1329 in main-win.c because the parent class's signal handler was NULL. This patch fixes the crash: --- a/src/main-win.c 2012-01-17 22:32:03.000000000 -0000 +++ b/src/main-win.c 2012-01-17 22:49:19.000000000 -0000 @@ -1326,7 +1326,14 @@ act = gtk_ui_manager_get_action(win->ui, "/Next2"); gtk_action_activate(act); } - return GTK_WIDGET_CLASS(fm_main_win_parent_class)->button_press_event(w, evt); + if(GTK_WIDGET_CLASS(fm_main_win_parent_class)->button_press_event) + { + return GTK_WIDGET_CLASS(fm_main_win_parent_class)->button_press_event(w, evt); + } + else + { + return FALSE; + } } static void on_reload(GtkAction* act, FmMainWin* win)

<deleted-account> commented on 2012-01-15 11:33 (UTC)

Bug with closing pcmanfm while rigth-clicking affects me too. Removing ./config/{libfm,pcmanfm} not helps. Pcmanfm works well if I use detailed list view- in this mode right-clicking works correctly. Version of pcmanfm from repo works correctly with right-click in all modes. Sorry for my english.

smoge commented on 2011-12-27 22:53 (UTC)

Try to remove ./config/{libfm,pcmanfm}. If it happens again report the issue to upstream. Or even better, isolate the commit that broke it with git bisect and report it.

<deleted-account> commented on 2011-12-22 03:00 (UTC)

Just installed pcmanfm-git (Dec 22, 2011). I get "Segmentation fault" when right-clicking. Anyone knows why?

<deleted-account> commented on 2011-05-19 09:56 (UTC)

==> Connecting to git://pcmanfm.git.sourceforge.net/gitroot/pcmanfm/pcmanfm... fatal: Not a git repository (or any of the parent directories): .git -> Local files updated fatal: repository 'pcmanfm' does not exist ==> ERROR: A failure occurred in build(). Aborting...

drexya commented on 2011-05-11 11:47 (UTC)

If you don't like the very small size of the icons in the toolbar, add this to the PKGBUILD just before "msg "Starting make..."" : sed -e '/gtk_toolbar_set_icon_size(GTK_TOOLBAR(win->toolbar), GTK_ICON_SIZE_SMALL_TOOLBAR);/d' \ -e '/gtk_toolbar_set_style(GTK_TOOLBAR(win->toolbar), GTK_TOOLBAR_ICONS);/d' \ -i "src/main-win.c"

Andrwe commented on 2011-01-02 16:34 (UTC)

Hi, there is an failure in the makedepends: makedepends=('git' 'intltool' 'pkgconfig') "pkgconfig" is since some time called "pkg-config" it only works until now because the package provides "pkgconfig" but this may be changed in future. Would you please correct this? Regards Andrwe

<deleted-account> commented on 2010-09-17 21:11 (UTC)

Please add lxmenu-data as dependency, the file-open dialog doesn't work without it.