Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
gnome-schedule
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GNOME
gnome-schedule
Commits
368de1e0
Commit
368de1e0
authored
Dec 07, 2008
by
Gaute Hope
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed bug 563600
svn path=/trunk/; revision=1110
parent
664a2263
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1088 additions
and
1104 deletions
+1088
-1104
ChangeLog
ChangeLog
+4
-0
src/gnome-schedule.glade
src/gnome-schedule.glade
+1079
-1088
src/mainWindow.py
src/mainWindow.py
+5
-16
No files found.
ChangeLog
View file @
368de1e0
2008-12-07 Gaute Hope <eg@gaute.vetsj.com>
* Bug 563600: Fixed text position on template ToolButton in mainWindow.
2008-10-01 Gaute Hope <eg@gaute.vetsj.com>
* Cleaned up the run function a bit more.. problem persists - can't take care of differencies between shells that don't act like they should.
...
...
src/gnome-schedule.glade
View file @
368de1e0
This diff is collapsed.
Click to expand it.
src/mainWindow.py
View file @
368de1e0
...
...
@@ -172,26 +172,15 @@ class main:
self
.
edit_mode_button
=
self
.
xml
.
get_widget
(
"edit_mode_button"
)
self
.
button_template
=
self
.
xml
.
get_widget
(
"button_m_template"
)
icon
=
gtk
.
Image
()
icon
.
set_from_pixbuf
(
self
.
normalicontemplate
)
self
.
button_template
.
set_icon_widget
(
icon
)
icon
.
show
()
self
.
prop_button
.
set_sensitive
(
False
)
self
.
del_button
.
set_sensitive
(
False
)
self
.
run_button
.
set_sensitive
(
False
)
self
.
button_tb
=
self
.
button_template
.
get_child
()
self
.
button_tb
.
remove
(
self
.
button_tb
.
get_child
())
self
.
tvbox
=
gtk
.
VBox
()
self
.
button_tb
.
add
(
self
.
tvbox
)
icon
=
gtk
.
Image
()
icon
.
set_from_pixbuf
(
self
.
normalicontemplate
)
label
=
gtk
.
Label
(
_
(
"Templates"
))
icon
.
set_alignment
(
0.5
,
0.5
)
label
.
set_justify
(
gtk
.
JUSTIFY_CENTER
)
label
.
set_alignment
(
0.5
,
0.5
)
self
.
tvbox
.
pack_start
(
icon
,
True
,
True
,
0
)
self
.
tvbox
.
pack_start
(
label
,
True
,
True
,
0
)
self
.
tvbox
.
show_all
()
self
.
xml
.
signal_connect
(
"on_prop_button_clicked"
,
self
.
on_prop_button_clicked
)
self
.
xml
.
signal_connect
(
"on_del_button_clicked"
,
self
.
on_del_button_clicked
)
self
.
xml
.
signal_connect
(
"on_help_button_clicked"
,
self
.
on_help_button_clicked
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment