summaryrefslogtreecommitdiffstats
path: root/control-center
Commit message (Collapse)AuthorAgeFilesLines
* fix untranslatable strings (mga#18201)Yuri Chornoivan2016-04-151-2/+2
| | | | bug introduced in commit b908a9dfd6810b690c9e43b9f31267de0cfc723f
* draksplash is dead since 2009...Thierry Vignaud2016-03-241-6/+0
|
* explicitely disable plugins & javaThierry Vignaud2016-03-181-0/+4
| | | | | though they do not seem to be loaded anymore since we switched from webkit1 to webkit2...
* add comments to explainThierry Vignaud2016-03-181-0/+3
|
* port to WebKit2 (mga#15031)Thierry Vignaud2016-03-181-8/+13
|
* use real class name (s!WebKit_View!WebKit_WebView!)Thierry Vignaud2016-02-221-1/+1
|
* disable animation for nowThierry Vignaud2015-12-201-0/+1
| | | | | this need more work and the gtk3+ port is rotting for 2 years already...
* fix activating menu items with latest gtk+3Thierry Vignaud2015-12-201-1/+1
| | | | | | gtk+3 has changed since 2 years ago, resulting in: Can't locate object method "set_active" via package "Gtk3::ImageMenuItem"
* simplify after converting to UIMThierry Vignaud2015-12-201-15/+1
|
* switch from factory to UIManagerThierry Vignaud2015-12-201-41/+57
|
* fix setting boldThierry Vignaud2015-12-201-1/+1
| | | | | | | | fix the following error: Argument "bold" isn't numeric in subroutine entry at which is not nice as we rely on hardcoded value... (PANGO_WEIGHT_BOLD is not available through introspection)
* fix crash while setting sizeThierry Vignaud2015-12-201-1/+1
| | | | | Can't locate object method "scale_large" via package "Pango" at ./control-center
* fix weight attributeThierry Vignaud2015-12-201-1/+1
| | | | | Can't locate object method "PANGO_WEIGHT_BOLD" via package "Pango" at ./control-center line 1413.
* drop support for external themes, there has been any in a decadeThierry Vignaud2015-12-201-42/+2
| | | | also simplify next commit
* perl_checker cleanupThierry Vignaud2015-12-201-1/+1
|
* perlish $dialog->vbox => $dialog->get_childThierry Vignaud2015-12-201-1/+1
|
* perlish $dialog->action_area => $dialog->get_action_areaThierry Vignaud2015-12-201-1/+1
|
* Gtk3::exit() is no more in Gtk3Thierry Vignaud2015-12-201-1/+0
|
* fix invisible text under the cursorThierry Vignaud2015-12-201-2/+2
| | | | | | | with theme-galaxy.css, text was rendered white on gray we need to prevent the default rule to be applied (which is useless for us anyway) since it's loaded after our own rules (gtknew('MDV_Notebook') => import_style_ressources()) and set our own colors for normal & hover states
* switch from RC files to CSSThierry Vignaud2015-12-201-2/+4
|
* fix calling keyval_from_name()Thierry Vignaud2015-12-201-1/+1
|
* fix computing root_window sizeThierry Vignaud2015-12-201-1/+1
|
* perlish ->style() => ->get_style()Thierry Vignaud2015-12-201-1/+1
|
* those setters no more accept undefThierry Vignaud2015-12-201-1/+1
|
* drop "Image_using_pixbuf", Cairo does a better jobThierry Vignaud2015-12-201-1/+1
|
* draw replaces expose_eventThierry Vignaud2015-12-201-1/+1
|
* get_height() => get_allocated_height()Thierry Vignaud2015-12-201-2/+2
|
* get_width() => get_allocated_width()Thierry Vignaud2015-12-201-2/+2
|
* perlish ->child() => ->get_child()Thierry Vignaud2015-12-201-1/+1
|
* s/can_focus()/set_can_focus()/Thierry Vignaud2015-12-201-2/+2
|
* perlish ->allocation => ->get_allocationThierry Vignaud2015-12-201-1/+1
|
* perlish ->window => ->get_windowThierry Vignaud2015-12-201-7/+7
|
* perlish realized() => get_realized()Thierry Vignaud2015-12-201-1/+1
|
* use Gtk3 namespace instead of Gtk2Thierry Vignaud2015-12-201-41/+41
|
* NO more need to load PangoThierry Vignaud2015-12-201-2/+1
|
* use (my|u)gtk3 instead of *tk2Thierry Vignaud2015-12-201-15/+15
|
* Update copyright yearsRĂ©mi Verschelde2015-03-091-1/+1
|
* try to reduce delay b/c it could cause unexpected exit from mccLuc Menut2015-02-261-1/+1
|
* add delay to prevent black background with oxygen-gtk3 (mga#11969)Luc Menut2015-02-231-0/+1
|
* fix a gtk warningThierry Vignaud2014-08-261-1/+4
| | | | | GLib-CRITICAL **: Source ID 350 was not found when attempting to remove it at /usr/libexec/drakconf line 1055.
* fix not displaying contributors in about dialog (mga#13093)Thierry Vignaud2014-03-281-1/+1
| | | | access to CREDITS was wrongly removed in befd324a2ef5f487e788bc6ed6c5de0dd7a9d751
* revert debug statementThierry Vignaud2014-01-081-2/+0
|
* 12.50Thierry Vignaud2014-01-081-0/+2
|
* simplify after previous commitThierry Vignaud2014-01-081-8/+1
| | | | revert commit 9b4e9da3dabd58573cc2c941bed524fc1fb24f7b
* better fix for segfault on startup (mga#10289)Thierry Vignaud2014-01-081-6/+4
| | | | | just block the CHLD signal during the window where glib/webkit create threads behind our back (RT-120951)
* move SIG_CHLD handler from fork_() into run_tool()Thierry Vignaud2014-01-081-0/+5
| | | | | | rationale: in next commit, we will block SIG_CHLD at startup then simplify starting logdrake, meaning fork() would unblock SIG_CHLD too early if "display logs" option is on
* delay starting up logdrake, thus fixing segfault on startup (mga#10289)Thierry Vignaud2014-01-071-2/+7
| | | | we would segfault when "Display Logs" option is set
* perl_checker cleanupsThierry Vignaud2014-01-071-2/+2
|
* kill useless debug messageThierry Vignaud2014-01-071-1/+0
|
* try harder to prevent segfaulting on webkit init (mga#10289)Thierry Vignaud2013-12-281-1/+5
| | | | | we segfault in SIG_CHLD when temporary webkit threads exit on init: delay setting CHLD handler on forking the 1st tool