[Bug 52628] Re: Unrar and unrar-free conflict
Intrepid released ** Changed in: unrar-free (Ubuntu) Assignee: (unassigned) => Ying-Chun Liu (GrandPaul) (paulliu) Status: Fix Committed => Fix Released -- Unrar and unrar-free conflict https://bugs.launchpad.net/bugs/52628 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 372936] Re: English Tsukihime crashes before title screen
I made a backtrace on Tsukihime v1.1 English version. (gdb) bt #0 0xb7e271ee in SDL_SetAlpha () from /usr/lib/libSDL-1.2.so.0 #1 0x0806705f in ONScripterLabel::btndefCommand (this=0xbff0fe00) at ONScripterLabel_command.cpp:2892 #2 0x0805e6bd in ONScripterLabel::parseLine (this=0xbff0fe00) at ONScripterLabel.cpp:924 #3 0x0805ec01 in ONScripterLabel::executeLabel (this=0xbff0fe00) at ONScripterLabel.cpp:881 #4 0x080785c9 in ONScripterLabel::timerEvent (this=0xbff0fe00) at ONScripterLabel_event.cpp:1013 #5 0x08078af8 in ONScripterLabel::eventLoop (this=0xbff0fe00) at ONScripterLabel_event.cpp:1090 #6 0x0804b1b2 in main (argc=1, argv=0xbff11d88) at onscripter.cpp:210 (gdb) up #1 0x0806705f in ONScripterLabel::btndefCommand (this=0xbff0fe00) at ONScripterLabel_command.cpp:2892 2892SDL_SetAlpha( btndef_info.image_surface, DEFAULT_BLIT_FLAG, SDL_ALPHA_OPAQUE ); (gdb) print btndef_info.image_surface $1 = (SDL_Surface *) 0x0 So the problem is btndef_info.image_surface is NULL in ONScripterLabel_command.cpp:2892 ONScripterLabel::btndefCommand () I'll see if new version solves the problem or not. -- English Tsukihime crashes before title screen https://bugs.launchpad.net/bugs/372936 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 372936] Re: English Tsukihime crashes before title screen
*** can't find file [image\title\titlebtn1.png] *** The above warning message mainly causes the crash. It's because image\title\titlebtn1.png is not there. In current version, the code is: if ( buf[0] != '\0' ){ btndef_info.setImageName( buf ); parseTaggedString( &btndef_info ); btndef_info.trans_mode = AnimationInfo::TRANS_COPY; setupAnimationInfo( &btndef_info ); SDL_SetAlpha( btndef_info.image_surface, DEFAULT_BLIT_FLAG, SDL_ALPHA_OPAQUE ); } In this case, buf = "image\title\titlebtn1.png" so btndef_info.setImageName() and following calls will result btndef_info.image_surface to be NULL because it's really not exists. And then SDL_SetAlpha crash because it's NULL. In Haeleth's version, the code is if ( buf[0] != '\0' ){ btndef_info.setImageName( buf ); parseTaggedString( &btndef_info ); btndef_info.trans_mode = AnimationInfo::TRANS_COPY; setupAnimationInfo( &btndef_info ); #ifdef RCA_SCALE if (btndef_info.image_surface && (scr_stretch_x > 1.0 || scr_stretch_y > 1.0 )) { // Scale and reposition buttons if screen is bigger than game SDL_Surface* src = btndef_info.image_surface; SDL_PixelFormat *fmt = src->format; SDL_Surface* dst = SDL_CreateRGBSurface( SDL_SWSURFACE, scr_stretch_x*src->w, scr_stretch_y*src->h, fmt->BitsPerPixel, fmt resizeSurface( src, dst ); btndef_info.image_surface = dst; btndef_info.pos.w *= scr_stretch_x; btndef_info.pos.h *= scr_stretch_y; SDL_FreeSurface( src ); } if (btndef_info.image_surface) #endif SDL_SetAlpha( btndef_info.image_surface, DEFAULT_BLIT_FLAG, SDL_ALPHA_OPAQUE ); } else btntime_value = 0; //Mion - clear the btn wait time So when RCA_SCALE is defined, it checks btndef_info.image_surface before calls to SDL_SetAlpha() which won't cause the crash. ** Changed in: onscripter (Ubuntu) Status: New => Confirmed -- English Tsukihime crashes before title screen https://bugs.launchpad.net/bugs/372936 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 371742] [NEW] Shared folders are not shared after install samba and session restarts
Public bug reported: Binary package hint: nautilus-share Steps to reproduce: 1.Select a folder,right click it and choose "Sharing Options"; 2.Check "Share this folder","Sharing service is not installed" message appeared; 3.Click "Install service",enter password,"Restart your session" will appear; 4.Click "Restart session",and the session is restarted 5. Right click folder Open Properties 6. Open Sharing tab 7. Folder does not show as Shared I think that the message should at least warn users to re-share that folder after session restart. The original bug report is https://bugs.edge.launchpad.net/buffalo/+bug/360308 It is a private bug report. Thanks. ** Affects: nautilus-share (Ubuntu) Importance: Undecided Status: New -- Shared folders are not shared after install samba and session restarts https://bugs.launchpad.net/bugs/371742 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 320817] Re: F-spot CDExport dialog exceed 600 pixel height when the screen is small
Sorry, do you mean assign 0.7 as an argument? Or Height*0.7?? According to http://www.go-mono.com/docs/index.aspx?link=T%3aGtk.Window%2f* The Resize member function reads two int. I'm not sure if there's two float version of Resize. If there is, Resize(1.0,0.7) is better. But if we have to use Resize(int,int), it means we have to convert Height to float and *0.7 and convert it back to int which may not faster than two int operation *7 /10. I'm not familiar at C# and Mono so I'm not sure which one is real faster. But usually two int op is faster than one float op, right? -- F-spot CDExport dialog exceed 600 pixel height when the screen is small https://bugs.launchpad.net/bugs/320817 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 320602] Re: F-spot crash when export to flickr and the network has problem
Hi, This new patch uses strings from other Exporters, so we don't need to re-translate it. ** Attachment added: "10_fix_export_crash_FlickrRemote.cs.dpatch" http://launchpadlibrarian.net/23121745/10_fix_export_crash_FlickrRemote.cs.dpatch -- F-spot crash when export to flickr and the network has problem https://bugs.launchpad.net/bugs/320602 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 305019] Re: pidgin preferences window is too tall for netbooks, cannot see close/cancel buttons, cannot be resized to fit
Updated patch. Only add scrolled window when screen height is <= 600 ** Attachment added: "1024x600.debdiff" http://launchpadlibrarian.net/23125532/1024x600.debdiff -- pidgin preferences window is too tall for netbooks, cannot see close/cancel buttons, cannot be resized to fit https://bugs.launchpad.net/bugs/305019 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 8629] Re: Evolution setup wizard does not fit in 800x600
I'm attaching all my patches regarding the evolution 600-pixel height non-fitting problem. Actually there's not only the wizard problem. The Calendar tab, and some properties dialogs have this problem too. So I put all the patches together inside a tarball. Please use them one by one. Some patches are dirty and some patches are not good enough. For example, we may fit evolution into 600 but to 1024x768, or to 1280x1024, it just looks a bit small. But after applying these patches, evolution do fit in 600 height. ** Attachment added: "Patches to fit evolution in 600-pixel height." http://launchpadlibrarian.net/18946858/patches.tar.gz -- Evolution setup wizard does not fit in 800x600 https://bugs.launchpad.net/bugs/8629 You received this bug notification because you are a member of Ubuntu Bugs, which is a direct subscriber. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 52628] Re: Unrar and unrar-free conflict
Fixed in Intrepid ** Changed in: unrar-free (Ubuntu) Status: Confirmed => Fix Committed -- Unrar and unrar-free conflict https://bugs.launchpad.net/bugs/52628 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 8629] Re: Evolution setup wizard does not fit in 800x600
** Tags added: unr-application-res -- Evolution setup wizard does not fit in 800x600 https://bugs.launchpad.net/bugs/8629 You received this bug notification because you are a member of Ubuntu Bugs, which is a direct subscriber. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 324464] [NEW] gnome-mouse-properties does not fit in 1024x600 screen
Public bug reported: Binary package hint: gnome-control-center Hi, I've made a patch for gnome-mouse-properties. It will add scrolledbars in some dialogs when the screen height is less than 600. Please consider including this patch, thanks. ** Affects: gnome-control-center (Ubuntu) Importance: Undecided Status: New ** Tags: unr-application-res -- gnome-mouse-properties does not fit in 1024x600 screen https://bugs.launchpad.net/bugs/324464 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 324464] Re: gnome-mouse-properties does not fit in 1024x600 screen
** Attachment added: "90_1024x600_gnome-mouse-properties.glade.patch" http://launchpadlibrarian.net/21909502/90_1024x600_gnome-mouse-properties.glade.patch ** Tags added: unr-application-res -- gnome-mouse-properties does not fit in 1024x600 screen https://bugs.launchpad.net/bugs/324464 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 8629] Re: Evolution setup wizard does not fit in 800x600
I refine all the patches I made. It now detects the screen resolution so it won't do any changes if the resolution is large. These patches are based on evolution 2.24.3 I'll attach the patches here. I'll also forward the patches to the upstream later. I'd be glad if someone can help me the forwarding tasks. Thanks. ** Attachment added: "1024x600_patches.tar.gz" http://launchpadlibrarian.net/21902667/1024x600_patches.tar.gz -- Evolution setup wizard does not fit in 800x600 https://bugs.launchpad.net/bugs/8629 You received this bug notification because you are a member of Ubuntu Bugs, which is a direct subscriber. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 320602] [NEW] F-spot crash when export to flickr and the network has problem
Public bug reported: Binary package hint: f-spot F-spot crash when the network is not available. stack trace: (f-spot:31251): GdkPixbuf-WARNING **: GdkPixbufLoader finalized without calling gdk_pixbuf_loader_close() - this is not allowed. You must explicitly end the data stream to the loader before dropping the last reference. Exception in Gtk# callback delegate Note: Applications can use GLib.ExceptionManager.UnhandledException to handle the exception. System.Net.WebException: Error: NameResolutionFailure at System.Net.HttpWebRequest.EndGetRequestStream (IAsyncResult asyncResult) [0x0] at System.Net.HttpWebRequest.GetRequestStream () [0x0] at FlickrNet.Flickr.DoGetResponse (System.String url, System.String variables) [0x0] at FlickrNet.Flickr.GetResponse (System.Collections.Hashtable parameters, TimeSpan cacheTimeout) [0x0] at FlickrNet.Flickr.GetResponseNoCache (System.Collections.Hashtable parameters) [0x0] at FlickrNet.Flickr.AuthGetFrob () [0x0] at FlickrRemote.TryWebLogin () [0x0] at FSpotFlickrExport.FlickrExport.Login () [0x0] at FSpotFlickrExport.FlickrExport.HandleClicked (System.Object sender, System.EventArgs args) [0x0] at GLib.Signal.voidObjectCallback (IntPtr handle, IntPtr data) [0x0] at GLib.ExceptionManager.RaiseUnhandledException(System.Exception e, Boolean is_terminal) at GLib.Signal.voidObjectCallback(IntPtr handle, IntPtr data) at GLib.Signal.voidObjectCallback(IntPtr , IntPtr ) at Gtk.Application.gtk_main() at Gtk.Application.gtk_main() at Gtk.Application.Run() at Gnome.Program.Run() at FSpot.Driver.Main(System.String[] args) It can be simulated by 1. iptables -A OUTPUT -o eth0 -p tcp -d www.flickr.com -j DROP 2. run f-spot. 3. select any image and export to flickr 4. click authorized button or 1. iptables -D OUTPUT -p udp --dport 53 -j DROP 2. run f-spot. 3. select any image and export to flickr 4. click authorized button I've made a patch to fix the problem. ** Affects: f-spot Importance: Unknown Status: Unknown ** Affects: f-spot (Ubuntu) Importance: Medium Assignee: Ubuntu Desktop Bugs (desktop-bugs) Status: Triaged -- F-spot crash when export to flickr and the network has problem https://bugs.launchpad.net/bugs/320602 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 320602] Re: F-spot crash when export to flickr and the network has problem
** Attachment added: "10_fix_export_crash_FlickrRemote.cs.dpatch" http://launchpadlibrarian.net/21577967/10_fix_export_crash_FlickrRemote.cs.dpatch -- F-spot crash when export to flickr and the network has problem https://bugs.launchpad.net/bugs/320602 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 320817] [NEW] F-spot CDExport dialog exceed 600 pixel height when the screen is small
Public bug reported: Binary package hint: f-spot In the process of developing the Ubuntu Netbook Remix, with the smaller screens of netbooks in mind, I wrote a patch to make f-spot work with less pixels. The problem is when exporting an image to CD, the dialog will exceed 600 pixel height. It can be easily reproduced by 1. Xephyr -ac -screen 1024x600 :2 2. env DISPLAY=:2 metacity & 3. env DISPLAY=:2 f-spot 4. Select an image in f-spot and export it to CD How interested are you in making such a resolution-dependent change? Thanks. ** Affects: f-spot (Ubuntu) Importance: Undecided Status: New -- F-spot CDExport dialog exceed 600 pixel height when the screen is small https://bugs.launchpad.net/bugs/320817 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 320817] Re: F-spot CDExport dialog exceed 600 pixel height when the screen is small
** Attachment added: "10_1024x600_CDExport.cs.dpatch" http://launchpadlibrarian.net/21593846/10_1024x600_CDExport.cs.dpatch -- F-spot CDExport dialog exceed 600 pixel height when the screen is small https://bugs.launchpad.net/bugs/320817 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 305019] Re: pidgin preferences window is too tall for netbooks, cannot see close/cancel buttons, cannot be resized to fit
In the process of developing the Ubuntu Netbook Remix, with the smaller screens of netbooks in mind, I wrote some patches to make pidgin work with less pixels. There are three places which make pidgin over 1024x600. 1. Preference window 2. Account Manager when choose protocol to "SILC" 3. Add Buddy Pounce by right clicking on a user. Now, these patches originally used hard-coded changes, because we were only targeting smaller screens. But I've modified it to check the resolution dynamically. I'll attach the patches below. Thanks. ** Attachment added: "Preference window patch" http://launchpadlibrarian.net/21624698/60_1024x600_gtkprefs.c.patch -- pidgin preferences window is too tall for netbooks, cannot see close/cancel buttons, cannot be resized to fit https://bugs.launchpad.net/bugs/305019 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 305019] Re: pidgin preferences window is too tall for netbooks, cannot see close/cancel buttons, cannot be resized to fit
Account Manager patch ** Attachment added: "Account Manager patch" http://launchpadlibrarian.net/21624704/60_1024x600_gtkaccount.c.patch -- pidgin preferences window is too tall for netbooks, cannot see close/cancel buttons, cannot be resized to fit https://bugs.launchpad.net/bugs/305019 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 305019] Re: pidgin preferences window is too tall for netbooks, cannot see close/cancel buttons, cannot be resized to fit
Add Buddy pounce patch ** Attachment added: "Add Buddy Pounce patch" http://launchpadlibrarian.net/21624718/60_1024x600_gtkpounce.c.patch -- pidgin preferences window is too tall for netbooks, cannot see close/cancel buttons, cannot be resized to fit https://bugs.launchpad.net/bugs/305019 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 337264] Re: Jaunty: Evolution's Sending Options page is set up incorrectly
Please drop 77_1024x600_mail-config.glade.patch And use 77_1024x600_mail-config.c.patch instead. Regards, Paul ** Attachment added: "77_1024x600_mail-config.c.patch" http://launchpadlibrarian.net/23372471/77_1024x600_mail-config.c.patch -- Jaunty: Evolution's Sending Options page is set up incorrectly https://bugs.launchpad.net/bugs/337264 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 337264] Re: Jaunty: Evolution's Sending Options page is set up incorrectly
I'll prepare a debdiff tomorrow. I have another patch to remove glade file changes. And also current 2.25.92-0ubuntu1 doesn't work because one of the patch needs to install new files. Please give me some time to fix this bug. -- Jaunty: Evolution's Sending Options page is set up incorrectly https://bugs.launchpad.net/bugs/337264 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 337264] Re: Jaunty: Evolution's Sending Options page is set up incorrectly
Dear Sebastien, I've refreshed some patches to fix this bug. Please sponsoring this debdiff. Thanks, Paul ** Attachment added: "evolution_2.25.92-0ubuntu2.debdiff" http://launchpadlibrarian.net/23418640/evolution_2.25.92-0ubuntu2.debdiff -- Jaunty: Evolution's Sending Options page is set up incorrectly https://bugs.launchpad.net/bugs/337264 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 305019] Re: pidgin preferences window is too tall for netbooks, cannot see close/cancel buttons, cannot be resized to fit
** Bug watch added: Pidgin Trac #7500 http://developer.pidgin.im/ticket/7500 ** Also affects: pidgin via http://developer.pidgin.im/ticket/7500 Importance: Unknown Status: Unknown -- pidgin preferences window is too tall for netbooks, cannot see close/cancel buttons, cannot be resized to fit https://bugs.launchpad.net/bugs/305019 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 324464] Re: gnome-mouse-properties does not fit in 1024x600 screen
Hi Sebastien, This patch only do code changes. ** Attachment added: "90_1024x600_gnome-mouse-properties.c.patch" http://launchpadlibrarian.net/22549603/90_1024x600_gnome-mouse-properties.c.patch -- gnome-mouse-properties does not fit in 1024x600 screen https://bugs.launchpad.net/bugs/324464 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 320602] Re: F-spot crash when export to flickr and the network has problem
Dear Sebastien, I've updated the patch to show an error dialog. Thanks. ** Attachment added: "10_fix_export_crash_FlickrRemote.cs.dpatch" http://launchpadlibrarian.net/22555465/10_fix_export_crash_FlickrRemote.cs.dpatch -- F-spot crash when export to flickr and the network has problem https://bugs.launchpad.net/bugs/320602 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 305019] Re: pidgin preferences window is too tall for netbooks, cannot see close/cancel buttons, cannot be resized to fit
Dear Daniel, I've linked it to upstream bug and attach the patches. Thanks. -- pidgin preferences window is too tall for netbooks, cannot see close/cancel buttons, cannot be resized to fit https://bugs.launchpad.net/bugs/305019 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 28805] Re: gnome-sound-properties dialog too high
Hi Sebastien, I've add scrolledbars to gnome-sound-properties when height is not enough. Since there's no gnome-sound-properties in gnome upstream and it's a patch in debian/patches in Jaunty, I'm attaching the debdiff here. Thanks. ** Attachment added: "sound.diff" http://launchpadlibrarian.net/22574527/sound.diff ** Tags added: unr-application-res -- gnome-sound-properties dialog too high https://bugs.launchpad.net/bugs/28805 You received this bug notification because you are a member of Ubuntu Bugs, which is a direct subscriber. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 328954] [NEW] gnome-about-me does not fit in 1024x600 screen
Public bug reported: Binary package hint: gnome-control-center Hi, In the process of developing the Ubuntu Netbook Remix, with the smaller screens of netbooks in mind, I wrote a patch to make gnome-about-me work with less pixels. Now, this patch originally used hard-coded changes, because we were only targeting smaller screens. But I've modified it to check the resolution dynamically. How interested are you in making such a resolution-dependent change? Thanks. ** Affects: gnome-control-center (Ubuntu) Importance: Undecided Status: New ** Tags: unr-application-res -- gnome-about-me does not fit in 1024x600 screen https://bugs.launchpad.net/bugs/328954 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 328954] Re: gnome-about-me does not fit in 1024x600 screen
** Attachment added: "99_fit_1024x600_gnome-about-me.c.patch" http://launchpadlibrarian.net/22575094/99_fit_1024x600_gnome-about-me.c.patch ** Tags added: unr-application-res -- gnome-about-me does not fit in 1024x600 screen https://bugs.launchpad.net/bugs/328954 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 28805] Re: gnome-sound-properties dialog too high
Yes, I was moving things to right side long time ago but later I found it's not really good for some PC resolution only 800x480. That why my original patches (for other later apps and not attached here) usually guaranteed that the application do fit in 640x480. Currently we don't have projects that really use 800x480 but since most Microsoft apps do fit in 640x480, we should consider to archive the same thing. Microsoft Windows and Microsoft-made apps runs good on netbooks without modification because I guess their policy is 640x480. So if we move "Default Mixer Tracks" to right side, then it may not fit into 800x480, which is bad to EeePC 1st generation. -- gnome-sound-properties dialog too high https://bugs.launchpad.net/bugs/28805 You received this bug notification because you are a member of Ubuntu Bugs, which is a direct subscriber. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 324464] Re: gnome-mouse-properties does not fit in 1024x600 screen
new glade file ** Attachment added: "gnome-mouse-properties.glade" http://launchpadlibrarian.net/22917866/gnome-mouse-properties.glade -- gnome-mouse-properties does not fit in 1024x600 screen https://bugs.launchpad.net/bugs/324464 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 328954] Re: gnome-about-me does not fit in 1024x600 screen
New glade file. ** Attachment added: "gnome-about-me.glade" http://launchpadlibrarian.net/22919185/gnome-about-me.glade -- gnome-about-me does not fit in 1024x600 screen https://bugs.launchpad.net/bugs/328954 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 320817] Re: F-spot CDExport dialog exceed 600 pixel height when the screen is small
Updated patch. ** Attachment added: "10_1024x600_CDExport.cs.dpatch" http://launchpadlibrarian.net/22921250/10_1024x600_CDExport.cs.dpatch -- F-spot CDExport dialog exceed 600 pixel height when the screen is small https://bugs.launchpad.net/bugs/320817 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 28805] Re: gnome-sound-properties dialog too high
Add debdiff files for #28805, #324464, #328954 ** Attachment added: "gnome-control-center_2.25.90-0ubuntu3.debdiff" http://launchpadlibrarian.net/22921232/gnome-control-center_2.25.90-0ubuntu3.debdiff -- gnome-sound-properties dialog too high https://bugs.launchpad.net/bugs/28805 You received this bug notification because you are a member of Ubuntu Bugs, which is a direct subscriber. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 262889] Re: gpaint crashed when user changes font
gdb trace log: Starting program: /tmp/gpaint-0.3.3/src/gpaint-2 [Thread debugging using libthread_db enabled] [New Thread 0xb7263910 (LWP 14858)] Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 0xb7263910 (LWP 14858)] 0x08062516 in text_attribute (tool=0x93d7cc0, attrib=GpaintFont, data=0x9481b68) at text.c:156 156 GtkWidget *widget = GTK_WIDGET(tool->canvas->drawing_area); (gdb) bt #0 0x08062516 in text_attribute (tool=0x93d7cc0, attrib=GpaintFont, data=0x9481b68) at text.c:156 #1 0xb7585074 in g_cclosure_marshal_VOID__VOID () from /usr/lib/libgobject-2.0.so.0 #2 0xb7577923 in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0 #3 0xb758ae9d in ?? () from /usr/lib/libgobject-2.0.so.0 #4 0x091d61e8 in ?? () #5 0x in ?? () (gdb) print tool->canvas $1 = (gpaint_canvas *) 0x0 (gdb) The tool->canvas is only set on tool_palette.c on_tool_select() at line 400: canvas_set_tool(canvas_lookup(GTK_WIDGET(tb->widget)), tb->tool); Which means the users have to click the text-tool button at least once to set the tool->canvas to avoid the crash. Please report the bug to upstream. Thanks. -- gpaint crashed when user changes font https://bugs.launchpad.net/bugs/262889 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 164500] Re: onscripter fails to look up symbol _ZN3avm3outE
Gutsy is a bit old. Newer onscripter in newer releases should already solve the problem. ** Changed in: onscripter (Ubuntu) Status: New => Invalid -- onscripter fails to look up symbol _ZN3avm3outE https://bugs.launchpad.net/bugs/164500 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 400576] [NEW] Please use compatible mode to provide NetworkManager dbus interface
Public bug reported: Binary package hint: connman Hi, connmand provides compatibility with NetworkManager dbus interfaces. * org.freedesktop.NetworkManager.sleep * org.freedesktop.NetworkManager.wake * org.freedesktop.NetworkManager.state Please use '-c' option for connmand so that some applications such as epiphany browser can get the status of the network. Many Thanks, Paul ** Affects: connman (Ubuntu) Importance: Undecided Status: New -- Please use compatible mode to provide NetworkManager dbus interface https://bugs.launchpad.net/bugs/400576 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 47810] Re: unrar-free almost always doesn't work
The information of this bug is old now. Currently, with unrar-free in Gutsy it is able to extract most of the rar files. Only RARv3 with AES encryption, multi-volume or >4GB files cannot be extracted. -- unrar-free almost always doesn't work https://bugs.launchpad.net/bugs/47810 You received this bug notification because you are a member of Ubuntu Bugs, which is a direct subscriber. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 47810] Re: unrar-free almost always doesn't work
** Changed in: unrar-free (Ubuntu) Status: Confirmed => Fix Committed -- unrar-free almost always doesn't work https://bugs.launchpad.net/bugs/47810 You received this bug notification because you are a member of Ubuntu Bugs, which is a direct subscriber. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 34357] Re: xracer freezes when pressing 's' for screenshot
This bug is already fixed and closed. Thanks. ** Changed in: xracer (Ubuntu) Status: Confirmed => Fix Released -- xracer freezes when pressing 's' for screenshot https://bugs.launchpad.net/bugs/34357 You received this bug notification because you are a member of Ubuntu Bugs, which is a direct subscriber. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 52628] Re: Unrar and unrar-free conflict
This bug has been fixed in Debian unstable. We need a sync. -- Unrar and unrar-free conflict https://bugs.launchpad.net/bugs/52628 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug contact for Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs