Lamarque Vieira Souza | 14 Jul 2012 04:42
Picon
Favicon

Review Request: Add submenu support to QML shutdown dialog.

This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/105568/

Review request for KDE Runtime and Konstantinos Smanis.
By Lamarque Vieira Souza.

Description

Add support to show submenus in the new QML shutdown dialog. I think this patch can be improved, the GUI too. When I have more time I will go back to improve it, until there you can send suggestions.

Testing

Submenus are created and it emits rebootRequested2 signal with the correct index.
Bugs: 297209

Diffs

  • ksmserver/themes/default/main.qml (7e78761)

View Diff

Lamarque Vieira Souza | 14 Jul 2012 04:46
Picon
Favicon

Re: Review Request: Add submenu support to QML shutdown dialog.

This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/105568/

Review request for KDE Runtime and Konstantinos Smanis.
By Lamarque Vieira Souza.

Updated July 14, 2012, 2:46 a.m.

Changes

Update description.

Description (updated)

Add support to show submenus in the new QML shutdown dialog. I think this patch can be improved, the GUI too. When I have more time I will go back to improve it, until there you can send suggestions. The patch assumes rebootOptions now contains strings like: entry1 submenu1 > subentry 1.1 submenu1 > subentry 1.2 submenu2 > subentry 2.1 submenu2 > subsubmenu 1 > subsubentry 2.1.1 entry2 The character '>' is the separator for submenus.

Testing

Submenus are created and it emits rebootRequested2 signal with the correct index.
Bugs: 297209

Diffs

  • ksmserver/themes/default/main.qml (7e78761)

View Diff

Lamarque Vieira Souza | 14 Jul 2012 07:41
Picon
Favicon

Re: Review Request: Add submenu support to QML shutdown dialog.

This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/105568/

Review request for KDE Runtime and Konstantinos Smanis.
By Lamarque Vieira Souza.

Updated July 14, 2012, 5:41 a.m.

Changes

. align menu entries to the left instead of center. . add hover effect. . add icon to the menu entry to indicate that it contains a submenu. . close all submenus when one entry is clicked. . add screenshot

Description

Add support to show submenus in the new QML shutdown dialog. I think this patch can be improved, the GUI too. When I have more time I will go back to improve it, until there you can send suggestions. The patch assumes rebootOptions now contains strings like: entry1 submenu1 > subentry 1.1 submenu1 > subentry 1.2 submenu2 > subentry 2.1 submenu2 > subsubmenu 1 > subsubentry 2.1.1 entry2 The character '>' is the separator for submenus.

Testing

Submenus are created and it emits rebootRequested2 signal with the correct index.
Bugs: 297209

Diffs (updated)

  • ksmserver/themes/default/ContextMenu.qml (6f2f1fd)
  • ksmserver/themes/default/MenuItem.qml (74bb03f)
  • ksmserver/themes/default/main.qml (7e78761)

View Diff

Screenshots (updated)

Lamarque Vieira Souza | 14 Jul 2012 07:48
Picon
Favicon

Re: Review Request: Add submenu support to QML shutdown dialog.

This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/105568/

Review request for KDE Runtime and Konstantinos Smanis.
By Lamarque Vieira Souza.

Updated July 14, 2012, 5:48 a.m.

Changes

remove extra white spaces.

Description

Add support to show submenus in the new QML shutdown dialog. I think this patch can be improved, the GUI too. When I have more time I will go back to improve it, until there you can send suggestions. The patch assumes rebootOptions now contains strings like: entry1 submenu1 > subentry 1.1 submenu1 > subentry 1.2 submenu2 > subentry 2.1 submenu2 > subsubmenu 1 > subsubentry 2.1.1 entry2 The character '>' is the separator for submenus.

Testing

Submenus are created and it emits rebootRequested2 signal with the correct index.
Bugs: 297209

Diffs (updated)

  • ksmserver/themes/default/ContextMenu.qml (6f2f1fd)
  • ksmserver/themes/default/MenuItem.qml (74bb03f)
  • ksmserver/themes/default/main.qml (7e78761)

View Diff

Screenshots

Konstantinos Smanis | 14 Jul 2012 14:18
Picon
Gravatar

Re: Review Request: Add submenu support to QML shutdown dialog.

This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/105568/

My QML knowledge is too limited to review your code, but I tested your patch and have the following remarks to make: 1) There is some flickering when hovering a menu item. Dunno if it has to do with my theme (tried Oxygen + Caledonia). 2) There is no proper '&' escaping. Ampersands are falsely treated as keyboard accelerators (the old code provisioned for this). A double ampersand is shown as a single. 3) When the menu item's text is small (~4-5 characters), the arrow is shown very close to the text. The core functionality seems to be fine, I onlyn noticed the above GUI issues.

- Konstantinos


On July 14th, 2012, 5:48 a.m., Lamarque Vieira Souza wrote:

Review request for KDE Runtime and Konstantinos Smanis.
By Lamarque Vieira Souza.

Updated July 14, 2012, 5:48 a.m.

Description

Add support to show submenus in the new QML shutdown dialog. I think this patch can be improved, the GUI too. When I have more time I will go back to improve it, until there you can send suggestions. The patch assumes rebootOptions now contains strings like: entry1 submenu1 > subentry 1.1 submenu1 > subentry 1.2 submenu2 > subentry 2.1 submenu2 > subsubmenu 1 > subsubentry 2.1.1 entry2 The character '>' is the separator for submenus.

Testing

Submenus are created and it emits rebootRequested2 signal with the correct index.
Bugs: 297209

Diffs

  • ksmserver/themes/default/ContextMenu.qml (6f2f1fd)
  • ksmserver/themes/default/MenuItem.qml (74bb03f)
  • ksmserver/themes/default/main.qml (7e78761)

View Diff

Screenshots

Konstantinos Smanis | 14 Jul 2012 14:23
Picon
Gravatar

Re: Review Request: Add submenu support to QML shutdown dialog.

This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/105568/

On July 14th, 2012, 12:18 p.m., Konstantinos Smanis wrote:

My QML knowledge is too limited to review your code, but I tested your patch and have the following remarks to make: 1) There is some flickering when hovering a menu item. Dunno if it has to do with my theme (tried Oxygen + Caledonia). 2) There is no proper '&' escaping. Ampersands are falsely treated as keyboard accelerators (the old code provisioned for this). A double ampersand is shown as a single. 3) When the menu item's text is small (~4-5 characters), the arrow is shown very close to the text. The core functionality seems to be fine, I onlyn noticed the above GUI issues.
This is how it looks like over here with Oxygen: http://i46.tinypic.com/2m47rrm.png

- Konstantinos


On July 14th, 2012, 5:48 a.m., Lamarque Vieira Souza wrote:

Review request for KDE Runtime and Konstantinos Smanis.
By Lamarque Vieira Souza.

Updated July 14, 2012, 5:48 a.m.

Description

Add support to show submenus in the new QML shutdown dialog. I think this patch can be improved, the GUI too. When I have more time I will go back to improve it, until there you can send suggestions. The patch assumes rebootOptions now contains strings like: entry1 submenu1 > subentry 1.1 submenu1 > subentry 1.2 submenu2 > subentry 2.1 submenu2 > subsubmenu 1 > subsubentry 2.1.1 entry2 The character '>' is the separator for submenus.

Testing

Submenus are created and it emits rebootRequested2 signal with the correct index.
Bugs: 297209

Diffs

  • ksmserver/themes/default/ContextMenu.qml (6f2f1fd)
  • ksmserver/themes/default/MenuItem.qml (74bb03f)
  • ksmserver/themes/default/main.qml (7e78761)

View Diff

Screenshots

Lamarque Vieira Souza | 14 Jul 2012 20:54
Picon
Favicon

Re: Review Request: Add submenu support to QML shutdown dialog.

This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/105568/

On July 14th, 2012, 12:18 p.m., Konstantinos Smanis wrote:

My QML knowledge is too limited to review your code, but I tested your patch and have the following remarks to make: 1) There is some flickering when hovering a menu item. Dunno if it has to do with my theme (tried Oxygen + Caledonia). 2) There is no proper '&' escaping. Ampersands are falsely treated as keyboard accelerators (the old code provisioned for this). A double ampersand is shown as a single. 3) When the menu item's text is small (~4-5 characters), the arrow is shown very close to the text. The core functionality seems to be fine, I onlyn noticed the above GUI issues.

On July 14th, 2012, 12:23 p.m., Konstantinos Smanis wrote:

This is how it looks like over here with Oxygen: http://i46.tinypic.com/2m47rrm.png
I do not see any flickering here. However, I disable several Oxygen effects here to improve performance, maybe one of them is causing your problem.

- Lamarque Vieira


On July 14th, 2012, 6:53 p.m., Lamarque Vieira Souza wrote:

Review request for KDE Runtime and Konstantinos Smanis.
By Lamarque Vieira Souza.

Updated July 14, 2012, 6:53 p.m.

Description

Add support to show submenus in the new QML shutdown dialog. I think this patch can be improved, the GUI too. When I have more time I will go back to improve it, until there you can send suggestions. The patch assumes rebootOptions now contains strings like: entry1 submenu1 > subentry 1.1 submenu1 > subentry 1.2 submenu2 > subentry 2.1 submenu2 > subsubmenu 1 > subsubentry 2.1.1 entry2 The character '>' is the separator for submenus.

Testing

Submenus are created and it emits rebootRequested2 signal with the correct index.
Bugs: 297209

Diffs

  • ksmserver/themes/default/ContextMenu.qml (6f2f1fd)
  • ksmserver/themes/default/MenuItem.qml (74bb03f)
  • ksmserver/themes/default/main.qml (7e78761)

View Diff

Screenshots

Konstantinos Smanis | 14 Jul 2012 21:33
Picon
Gravatar

Re: Review Request: Add submenu support to QML shutdown dialog.

This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/105568/

On July 14th, 2012, 12:18 p.m., Konstantinos Smanis wrote:

My QML knowledge is too limited to review your code, but I tested your patch and have the following remarks to make: 1) There is some flickering when hovering a menu item. Dunno if it has to do with my theme (tried Oxygen + Caledonia). 2) There is no proper '&' escaping. Ampersands are falsely treated as keyboard accelerators (the old code provisioned for this). A double ampersand is shown as a single. 3) When the menu item's text is small (~4-5 characters), the arrow is shown very close to the text. The core functionality seems to be fine, I onlyn noticed the above GUI issues.

On July 14th, 2012, 12:23 p.m., Konstantinos Smanis wrote:

This is how it looks like over here with Oxygen: http://i46.tinypic.com/2m47rrm.png

On July 14th, 2012, 6:54 p.m., Lamarque Vieira Souza wrote:

I do not see any flickering here. However, I disable several Oxygen effects here to improve performance, maybe one of them is causing your problem.
Actually the flickering occurs even without the patch (but it's not that noticeable). It doesn't have to do with this specific patch.

- Konstantinos


On July 14th, 2012, 6:53 p.m., Lamarque Vieira Souza wrote:

Review request for KDE Runtime and Konstantinos Smanis.
By Lamarque Vieira Souza.

Updated July 14, 2012, 6:53 p.m.

Description

Add support to show submenus in the new QML shutdown dialog. I think this patch can be improved, the GUI too. When I have more time I will go back to improve it, until there you can send suggestions. The patch assumes rebootOptions now contains strings like: entry1 submenu1 > subentry 1.1 submenu1 > subentry 1.2 submenu2 > subentry 2.1 submenu2 > subsubmenu 1 > subsubentry 2.1.1 entry2 The character '>' is the separator for submenus.

Testing

Submenus are created and it emits rebootRequested2 signal with the correct index.
Bugs: 297209

Diffs

  • ksmserver/themes/default/ContextMenu.qml (6f2f1fd)
  • ksmserver/themes/default/MenuItem.qml (74bb03f)
  • ksmserver/themes/default/main.qml (7e78761)

View Diff

Screenshots

Lamarque Vieira Souza | 14 Jul 2012 20:53
Picon
Favicon

Re: Review Request: Add submenu support to QML shutdown dialog.

This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/105568/

Review request for KDE Runtime and Konstantinos Smanis.
By Lamarque Vieira Souza.

Updated July 14, 2012, 6:53 p.m.

Changes

. do not treat ampersand as accelerator. . adjust menu entries's width. . close all menus when pressing ESC.

Description

Add support to show submenus in the new QML shutdown dialog. I think this patch can be improved, the GUI too. When I have more time I will go back to improve it, until there you can send suggestions. The patch assumes rebootOptions now contains strings like: entry1 submenu1 > subentry 1.1 submenu1 > subentry 1.2 submenu2 > subentry 2.1 submenu2 > subsubmenu 1 > subsubentry 2.1.1 entry2 The character '>' is the separator for submenus.

Testing

Submenus are created and it emits rebootRequested2 signal with the correct index.
Bugs: 297209

Diffs (updated)

  • ksmserver/themes/default/ContextMenu.qml (6f2f1fd)
  • ksmserver/themes/default/MenuItem.qml (74bb03f)
  • ksmserver/themes/default/main.qml (7e78761)

View Diff

Screenshots

Konstantinos Smanis | 14 Jul 2012 21:36
Picon
Gravatar

Re: Review Request: Add submenu support to QML shutdown dialog.

This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/105568/

The issues were resolved; much better now.

- Konstantinos


On July 14th, 2012, 6:53 p.m., Lamarque Vieira Souza wrote:

Review request for KDE Runtime and Konstantinos Smanis.
By Lamarque Vieira Souza.

Updated July 14, 2012, 6:53 p.m.

Description

Add support to show submenus in the new QML shutdown dialog. I think this patch can be improved, the GUI too. When I have more time I will go back to improve it, until there you can send suggestions. The patch assumes rebootOptions now contains strings like: entry1 submenu1 > subentry 1.1 submenu1 > subentry 1.2 submenu2 > subentry 2.1 submenu2 > subsubmenu 1 > subsubentry 2.1.1 entry2 The character '>' is the separator for submenus.

Testing

Submenus are created and it emits rebootRequested2 signal with the correct index.
Bugs: 297209

Diffs

  • ksmserver/themes/default/ContextMenu.qml (6f2f1fd)
  • ksmserver/themes/default/MenuItem.qml (74bb03f)
  • ksmserver/themes/default/main.qml (7e78761)

View Diff

Screenshots

Commit Hook | 17 Jul 2012 19:40
Picon
Favicon

Re: Review Request: Add submenu support to QML shutdown dialog.

This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/105568/

This review has been submitted with commit 0e325a61a57ff85f15bd3f84e57b5800ef32de07 by Lamarque V. Souza to branch KDE/4.9.

- Commit


On July 14th, 2012, 6:53 p.m., Lamarque Vieira Souza wrote:

Review request for KDE Runtime and Konstantinos Smanis.
By Lamarque Vieira Souza.

Updated July 14, 2012, 6:53 p.m.

Description

Add support to show submenus in the new QML shutdown dialog. I think this patch can be improved, the GUI too. When I have more time I will go back to improve it, until there you can send suggestions. The patch assumes rebootOptions now contains strings like: entry1 submenu1 > subentry 1.1 submenu1 > subentry 1.2 submenu2 > subentry 2.1 submenu2 > subsubmenu 1 > subsubentry 2.1.1 entry2 The character '>' is the separator for submenus.

Testing

Submenus are created and it emits rebootRequested2 signal with the correct index.
Bugs: 297209

Diffs

  • ksmserver/themes/default/ContextMenu.qml (6f2f1fd)
  • ksmserver/themes/default/MenuItem.qml (74bb03f)
  • ksmserver/themes/default/main.qml (7e78761)

View Diff

Screenshots

Commit Hook | 17 Jul 2012 19:40
Picon
Favicon

Re: Review Request: Add submenu support to QML shutdown dialog.

This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/105568/

This review has been submitted with commit 7884098c74837db178a01c042cd187d37fd254b5 by Lamarque V. Souza to branch master.

- Commit


On July 14th, 2012, 6:53 p.m., Lamarque Vieira Souza wrote:

Review request for KDE Runtime and Konstantinos Smanis.
By Lamarque Vieira Souza.

Updated July 14, 2012, 6:53 p.m.

Description

Add support to show submenus in the new QML shutdown dialog. I think this patch can be improved, the GUI too. When I have more time I will go back to improve it, until there you can send suggestions. The patch assumes rebootOptions now contains strings like: entry1 submenu1 > subentry 1.1 submenu1 > subentry 1.2 submenu2 > subentry 2.1 submenu2 > subsubmenu 1 > subsubentry 2.1.1 entry2 The character '>' is the separator for submenus.

Testing

Submenus are created and it emits rebootRequested2 signal with the correct index.
Bugs: 297209

Diffs

  • ksmserver/themes/default/ContextMenu.qml (6f2f1fd)
  • ksmserver/themes/default/MenuItem.qml (74bb03f)
  • ksmserver/themes/default/main.qml (7e78761)

View Diff

Screenshots

Konstantinos Smanis | 17 Jul 2012 20:19
Picon
Gravatar

Re: Review Request: Add submenu support to QML shutdown dialog.

This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/105568/

I forgot to mention that the submenus should only be created if Grub2 or Burg is the selected Boot Manager in KDM. Other bootloaders (grub, lilo) should still be able to use '>' in the menu titles without creating submenus. See the ksmserver part of the other patch I am submitting for branch KDE/4.8 (https://git.reviewboard.kde.org/r/105563/).

- Konstantinos


On July 14th, 2012, 6:53 p.m., Lamarque Vieira Souza wrote:

Review request for KDE Runtime and Konstantinos Smanis.
By Lamarque Vieira Souza.

Updated July 14, 2012, 6:53 p.m.

Description

Add support to show submenus in the new QML shutdown dialog. I think this patch can be improved, the GUI too. When I have more time I will go back to improve it, until there you can send suggestions. The patch assumes rebootOptions now contains strings like: entry1 submenu1 > subentry 1.1 submenu1 > subentry 1.2 submenu2 > subentry 2.1 submenu2 > subsubmenu 1 > subsubentry 2.1.1 entry2 The character '>' is the separator for submenus.

Testing

Submenus are created and it emits rebootRequested2 signal with the correct index.
Bugs: 297209

Diffs

  • ksmserver/themes/default/ContextMenu.qml (6f2f1fd)
  • ksmserver/themes/default/MenuItem.qml (74bb03f)
  • ksmserver/themes/default/main.qml (7e78761)

View Diff

Screenshots

Lamarque Vieira Souza | 17 Jul 2012 21:18
Picon
Favicon

Re: Review Request: Add submenu support to QML shutdown dialog.

This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/105568/

On July 17th, 2012, 6:19 p.m., Konstantinos Smanis wrote:

I forgot to mention that the submenus should only be created if Grub2 or Burg is the selected Boot Manager in KDM. Other bootloaders (grub, lilo) should still be able to use '>' in the menu titles without creating submenus. See the ksmserver part of the other patch I am submitting for branch KDE/4.8 (https://git.reviewboard.kde.org/r/105563/).
I will fix that tonight. I need to go now.

- Lamarque Vieira


On July 14th, 2012, 6:53 p.m., Lamarque Vieira Souza wrote:

Review request for KDE Runtime and Konstantinos Smanis.
By Lamarque Vieira Souza.

Updated July 14, 2012, 6:53 p.m.

Description

Add support to show submenus in the new QML shutdown dialog. I think this patch can be improved, the GUI too. When I have more time I will go back to improve it, until there you can send suggestions. The patch assumes rebootOptions now contains strings like: entry1 submenu1 > subentry 1.1 submenu1 > subentry 1.2 submenu2 > subentry 2.1 submenu2 > subsubmenu 1 > subsubentry 2.1.1 entry2 The character '>' is the separator for submenus.

Testing

Submenus are created and it emits rebootRequested2 signal with the correct index.
Bugs: 297209

Diffs

  • ksmserver/themes/default/ContextMenu.qml (6f2f1fd)
  • ksmserver/themes/default/MenuItem.qml (74bb03f)
  • ksmserver/themes/default/main.qml (7e78761)

View Diff

Screenshots

Oswald Buddenhagen | 17 Jul 2012 23:04
Picon
Favicon
Gravatar

Re: Review Request: Add submenu support to QML shutdown dialog.

This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/105568/

On July 17th, 2012, 6:19 p.m., Konstantinos Smanis wrote:

I forgot to mention that the submenus should only be created if Grub2 or Burg is the selected Boot Manager in KDM. Other bootloaders (grub, lilo) should still be able to use '>' in the menu titles without creating submenus. See the ksmserver part of the other patch I am submitting for branch KDE/4.8 (https://git.reviewboard.kde.org/r/105563/).

On July 17th, 2012, 7:18 p.m., Lamarque Vieira Souza wrote:

I will fix that tonight. I need to go now.
i would recommend against doing anything until the kdm patch is final

- Oswald


On July 14th, 2012, 6:53 p.m., Lamarque Vieira Souza wrote:

Review request for KDE Runtime and Konstantinos Smanis.
By Lamarque Vieira Souza.

Updated July 14, 2012, 6:53 p.m.

Description

Add support to show submenus in the new QML shutdown dialog. I think this patch can be improved, the GUI too. When I have more time I will go back to improve it, until there you can send suggestions. The patch assumes rebootOptions now contains strings like: entry1 submenu1 > subentry 1.1 submenu1 > subentry 1.2 submenu2 > subentry 2.1 submenu2 > subsubmenu 1 > subsubentry 2.1.1 entry2 The character '>' is the separator for submenus.

Testing

Submenus are created and it emits rebootRequested2 signal with the correct index.
Bugs: 297209

Diffs

  • ksmserver/themes/default/ContextMenu.qml (6f2f1fd)
  • ksmserver/themes/default/MenuItem.qml (74bb03f)
  • ksmserver/themes/default/main.qml (7e78761)

View Diff

Screenshots

Lamarque Vieira Souza | 18 Jul 2012 00:13
Picon
Favicon

Re: Review Request: Add submenu support to QML shutdown dialog.

This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/105568/

On July 17th, 2012, 6:19 p.m., Konstantinos Smanis wrote:

I forgot to mention that the submenus should only be created if Grub2 or Burg is the selected Boot Manager in KDM. Other bootloaders (grub, lilo) should still be able to use '>' in the menu titles without creating submenus. See the ksmserver part of the other patch I am submitting for branch KDE/4.8 (https://git.reviewboard.kde.org/r/105563/).

On July 17th, 2012, 7:18 p.m., Lamarque Vieira Souza wrote:

I will fix that tonight. I need to go now.

On July 17th, 2012, 9:04 p.m., Oswald Buddenhagen wrote:

i would recommend against doing anything until the kdm patch is final
Too late, this patch and the commit to fix the issue above are already pushed. ksmserver now works with or without the kdm patch. It will create a flat menu if the kdm patch is not applied or user is using a boot manager different from Grub2 or Burg.

- Lamarque Vieira


On July 14th, 2012, 6:53 p.m., Lamarque Vieira Souza wrote:

Review request for KDE Runtime and Konstantinos Smanis.
By Lamarque Vieira Souza.

Updated July 14, 2012, 6:53 p.m.

Description

Add support to show submenus in the new QML shutdown dialog. I think this patch can be improved, the GUI too. When I have more time I will go back to improve it, until there you can send suggestions. The patch assumes rebootOptions now contains strings like: entry1 submenu1 > subentry 1.1 submenu1 > subentry 1.2 submenu2 > subentry 2.1 submenu2 > subsubmenu 1 > subsubentry 2.1.1 entry2 The character '>' is the separator for submenus.

Testing

Submenus are created and it emits rebootRequested2 signal with the correct index.
Bugs: 297209

Diffs

  • ksmserver/themes/default/ContextMenu.qml (6f2f1fd)
  • ksmserver/themes/default/MenuItem.qml (74bb03f)
  • ksmserver/themes/default/main.qml (7e78761)

View Diff

Screenshots


Gmane