Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 148505 Details for
Bug 229510
firstbootWindow.py bugs prevent reloading module correctly
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
A patch to fix the problems
firstbootWindow.patch (text/plain), 1.61 KB, created by
Nancy Wei
on 2007-02-21 17:25:23 UTC
(
hide
)
Description:
A patch to fix the problems
Filename:
MIME Type:
Creator:
Nancy Wei
Created:
2007-02-21 17:25:23 UTC
Size:
1.61 KB
patch
obsolete
>--- firstboot/firstbootWindow.py 2007-02-20 10:25:44.000000000 -0500 >+++ firstboot/firstbootWindow.py.fix2 2007-02-20 11:32:53.000000000 -0500 >@@ -305,9 +305,11 @@ > #Something went wrong in the module. Don't advance > return > >- #Check to see if we're on the last page. >- tmp = self.notebook.get_nth_page(self.notebook.get_current_page() + 1) >- if not tmp: >+ #Check to see if we're on the last page. >+ items = self.leftVBox.get_children() >+ current_page = self.notebook.get_current_page() >+ if (current_page + 1) == len(items): >+ > self.nextButton.disconnect(self.nextHandler) > self.nextHandler = self.nextButton.connect('clicked', self.finishClicked) > self.nextButton.set_label(_("_Finish")) >@@ -548,7 +550,7 @@ > # we need a non tranlated name for each module so we can > # jump around > self.moduleNameToIndex[module.__module__] = (pages, sidebarIndex) >- self.notebook.append_page(vbox, gtk.Label(_(module.moduleName))) >+ self.notebook.insert_page(vbox, gtk.Label(_(module.moduleName)),sidebarIndex) > else: > self.notebook.append_page(vbox, gtk.Label(" ")) > self.moduleNameToIndex["unamemodule-%s" % pages] = (pages, sidebarIndex) >@@ -592,7 +594,7 @@ > > self.leftVBox.show_all() > self.notebook.show_all() >- self.notebook.set_current_page(1) >+ self.notebook.set_current_page(0) > > def takeScreenShot(self): > global screenshotIndex
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 229510
: 148505