Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add instructions to configure "Quick launch" widget. #1604

Open
bjlockie opened this issue Oct 31, 2018 · 1 comment
Open

add instructions to configure "Quick launch" widget. #1604

bjlockie opened this issue Oct 31, 2018 · 1 comment

Comments

@bjlockie
Copy link

RMB click on lxpanel.
Select "Manage Widgets".
Select a "Quick launch" widget.
The gear to configure it is greyed out.
Maybe the bubble help could say to drag&drop applications on the widget to configure it.
Or the gear button could open a window saying to drag&drop.

System Information

LUbuntu-18.10

  • Kernel: 4.18.0
    LXQt Version | 0.13.0
    Qt | 5.11.1
@agaida agaida added this to Needs triage in Issues Nov 1, 2018
@sudogooglex
Copy link

It seems the configure option is not implemented yet.
https://github.com/lxqt/lxqt-panel/blob/master/plugin-quicklaunch/quicklaunchbutton.cpp

mMoveLeftAct = new QAction(XdgIcon::fromTheme("go-previous"), tr("Move left"), this);
connect(mMoveLeftAct, SIGNAL(triggered()), this, SIGNAL(movedLeft()));

mMoveRightAct = new QAction(XdgIcon::fromTheme("go-next"), tr("Move right"), this);
connect(mMoveRightAct, SIGNAL(triggered()), this, SIGNAL(movedRight()));


mDeleteAct = new QAction(XdgIcon::fromTheme("dialog-close"), tr("Remove from quicklaunch"), this);
connect(mDeleteAct, SIGNAL(triggered()), this, SLOT(selfRemove()));
addAction(mDeleteAct);
mMenu = new QMenu(this);
mMenu->addAction(mAct);
mMenu->addActions(mAct->addtitionalActions());
mMenu->addSeparator();
mMenu->addAction(mMoveLeftAct);
mMenu->addAction(mMoveRightAct);
mMenu->addSeparator();
mMenu->addAction(mDeleteAct);

@agaida agaida moved this from Needs triage to Wishlist in Issues Feb 22, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Issues
  
Wishlist
Development

No branches or pull requests

3 participants