FreeBSD Bugzilla – Attachment 60549 Details for
Bug 90857
Alacarte can not modify menu items without icon
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
file.diff
file.diff (text/plain), 1.08 KB, created by
Chris Chou
on 2005-12-23 16:40:05 UTC
(
hide
)
Description:
file.diff
Filename:
MIME Type:
Creator:
Chris Chou
Created:
2005-12-23 16:40:05 UTC
Size:
1.08 KB
patch
obsolete
>--- GnomeDialogHandler.py Fri Dec 23 23:51:02 2005 >+++ GnomeDialogHandler.py.origin Fri Dec 23 23:50:27 2005 >@@ -212,7 +212,10 @@ > ) > commandEntry.gtk_entry().set_completion(self.completion) > iconButton = self.tree.get_widget('eiconbutton') >- iconButton.set_pixmap_subdir(item.iconPath) >+ if item.iconPath == None: >+ iconButton.set_pixmap_subdir('') >+ else: >+ iconButton.set_pixmap_subdir(item.iconPath) > termCheck = self.tree.get_widget('etermcheck') > originalValues = ( > item.getKey('Name'), item.getKey('Comment'), item.getKey('Exec'), >@@ -221,7 +224,10 @@ > nameEntry.set_text(item.getKey('Name')) > commentEntry.set_text(item.getKey('Comment')) > commandEntry.set_filename(item.getKey('Exec')) >- iconButton.set_filename(item.iconPath) >+ if item.iconPath == None: >+ iconButton.set_filename('') >+ else: >+ iconButton.set_filename(item.iconPath) > if item.getKey('Terminal') == 'true': > termCheck.set_active(1) > self.setupEntry = False
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 90857
: 60549