Kde4: CWP plasmoid size/fonts [SOLVED]

Hi,
Installed CWP plasmoid; it's just way too small and the font is the smallest possible one. There's no obvious way to handle this; any ideas?
UPD:
Here: http://userbase.kde.org/Plasma
Last edited by Llama (2009-11-04 07:47:19)

embed-win.cpp
    setMinimumSize(50, 450);
That solved the issue.

Similar Messages

  • I used to be able to increase the size font of the persons name sending me an email or text message.  I have an iphone 5 and can no longer do that.  Help!

    I used to be able to increase the size font of the persons name sending me an email or text message.  I have an iphone 5 and can no longer do that.  Help!

    Just the name? Don't ever recall that being a feature. However, for Mail and Messages (and a few other apps): Settings app > General > Text Size

  • How to change the SIZE FONT of the text description in ESS

    Hi Forum
       My key user wants the size font  more bigger in the areas and subarea´s of ESS. I have changed then font of the standard text in the Theme Editor. I think that this is a property in the Web Dynpro Application and only modifying it this could be more bigger, but this means change the standard appliction of ESS.
    Any idea ?
    Thnks
    Josué Cruz

    Josué,
    The changes applied to theme should work, but also you can consider this workarounds:
    For only one user, He/She can increase all fonts in general by using font increase tool from the internet browser;
    - In IE: View > Font Size > Larger or Largest
    - In Firefox: View > Zoom > Zoom In
    Do iview Personalization, by opening in Preview mode and doing Ctrl+Right click. Then, for the corresponding text you can select in Design field "Title 2", "Title 1", ...
    Best regards

  • How do I increase the size (font's, overall presentation, etc.) to make it easier to read each page?

    Hoe do I increase the presentation size (fonts, overall presentation, etc.) to make Firefox easier to read.

    Thank you, your assistance is greatly appreciated, your response resolved my problem completely.
    Thank you very much.
    DGS

  • Changing page size from legal to letter with same size font when printed

    I have the problem that I get a pdf which is in legal size format.  I need to print this in letter size, sign it and re-scan it and send via email to a person who then needs to print it and sign it and scan it.  What is happening is the person who I have to send this too can only scan letter size paper.  I can make the legal size form print, (shink to fit printable area), as letter size but the font becomes so small that it is unreadable.  What I need to do is resize the legal to letter but keep the same size font.  I expect this to make the document 2 pages but that is fine.  I can not find how to do this.  I have Adobe 9.
    [email protected]

    Does the original legal size document content occupy more space than would fit on 8.5x11? If not, then you can simply set the page size in print driver properties to letter, and in the Page Handling area of the Print dialog box tell it:
    Page Scaling: None
    check: Auto-Rotate and Center
    do not check: Choose paper source by PDF page size - this will force it to print on the paper selected in the print driver properties.
    If the actual content is too large to print on the forced paper, then you need to (in the Page Handling area of the print dialog) tell it:
    Page Scaling: Tile large pages
    This will allow the remaining content to print on a second page

  • Huge firefox UI fonts [SOLVED]

    I've gone through quite alot of the posts on here about firefox alias / antialias fonts etc, but not many that deal with the actual fonts along the toolbar etc.
    I was trying to find how to change them but nothing seemed to work. However, after a reboot the next day i was suddenly greeted with this:
    I'm sure you'll agree its a totally mammoth font size.
    Any ideas how to change this - i have no idea what i've done.
    I tried creating a .gtk-2.0 file after this happened - no difference. I also change my /etc/fonts/local.conf - also no difference.
    Any ideas?
    Cheers!
    EDIT: Solved - monitor sizes in xorg.conf were the wrong way around - should be
    DisplaySize <Width> <Height>

    Well changing display resolution from system to 96dpi gives me exactly what i'm wanting.
    Just wondering where the 'system' setting is.
    phrakture:
    Section "Files"
    RgbPath "/usr/X11R6/lib/X11/rgb"
    ModulePath "/usr/X11R6/lib/modules"
    FontPath "/usr/X11R6/lib/X11/fonts/TTF"
    FontPath "/usr/X11R6/lib/X11/fonts/100dpi"
    FontPath "/usr/X11R6/lib/X11/fonts/CID"
    FontPath "/usr/X11R6/lib/X11/fonts/Type1"
    FontPath "/usr/X11R6/lib/X11/fonts/local"
    FontPath "/usr/X11R6/lib/X11/fonts/75dpi"
    FontPath "/usr/X11R6/lib/X11/fonts/misc"
    EndSection
    <?xml version="1.0"?>
    <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
    <!-- /etc/fonts.conf file to configure system font access -->
    <fontconfig>
    <match target="font">
    <edit name="antialias" mode="assign"><bool>true</bool></edit>
    <edit name="hinting" mode="assign"><bool>false</bool></edit>
    </match>
    <!-- Enable sub-pixel rendering
    <match target="font">
    <test qual="all" name="rgba">
    <const>unknown</const>
    </test>
    <edit name="rgba" mode="assign"><const>rgb</const></edit>
    </match> -->
    <match target="pattern">
    <edit name="dpi" mode="assign"><double>101</double></edit>
    </match>
    <!-- Dongs -->
    <alias>
    <family>serif</family>
    <prefer>
    <family>Bitstream Vera Serif</family>
    </prefer>
    </alias>
    <alias>
    <family>sans-serif</family>
    <prefer>
    <family>Bitstream Vera Sans</family>
    </prefer>
    </alias>
    <alias>
    <family>monospace</family>
    <prefer>
    <family>Bitstream Vera Sans Mono</family>
    </prefer>
    </alias>
    </fontconfig>
    Cheers for all your help guys

  • Problem size font on photoshop cc script add name on picture

    no problem on cs6 when i run  this script on cs6
    / add document name in text layer script; 
    #target photoshop
    if (app.documents.length > 0) { 
    var myDocument = app.activeDocument; 
    var originalUnits = app.preferences.rulerUnits; 
    app.preferences.rulerUnits = Units.PIXELS; 
    // getting the name; 
    var docName = myDocument.name; 
    //getting the location; 
    //var docPath = myDocument.path; 
    // make the layer; 
    var myLayerRef = myDocument.artLayers.add(); 
    myLayerRef.kind = LayerKind.TEXT; 
    myLayerRef.name = "text"; 
    var myTextRef = myLayerRef.textItem; 
    myTextRef.size = 45; 
    myTextRef.font = "Courier"; 
    myTextRef.justification = Justification.RIGHT; 
    //Set text colour in RGB values 
    var newColor = new SolidColor(); 
    newColor.rgb.red = 255; 
    newColor.rgb.green = 255; 
    newColor.rgb.blue = 255; 
    myTextRef.color = newColor; 
    // Set the position of the text - percentages from left first, then from top.
    myTextRef.position = new Array( myDocument.width - 85, myDocument.height - 85); 
    myLayerRef.blendMode = BlendMode.NORMAL; 
    myLayerRef.opacity = 100;
    myTextRef.contents = docName; 
    app.preferences.rulerUnits = originalUnits; 
    But with photoshop CC 2014 the size text appear at 2.88 points and on the script i set to 45 points.
    i need help
    Please

    See Did CC 2014.2 break textItem.size?
    The code for work-around is here:
    http://ps-scripts.cvs.sourceforge.net/viewvc/ps-scripts/xtools/xlib/PSCCFontSizeBugFix.jsx
    You need to change your code to set the font size like this:
    myTextRef.size = 45;
    if (myTextRef.size.as("px") != 45) {
      PSCCFontSizeFix.setFontSizePixels(myLayerRef, 45);

  • How do you change default note size font

    I accidentally posted this for iWork previous to 08, sorry. I want to change the default font size for all notes in a file. I realize you can change them one slide at a time by using Cmd-+or-, but I don't want to have to do every one separately since I'm just trying to record a narration. Likewise I still have no answer to how one sees presenter notes on the slide while recording a narration! Help!

    Thanks, Sam. Yes, I could easily change the individual slides, too, but there seems to be a rather large hole in the program, if you're promoting this for kiosk use or even just being able to send to possible interested parties without being present and therefore you want to narrate it. AARGH! Is there NO one at Apple who even occasionally looks at it's own forums! And it's not in the Knowledge database either.

  • No more fixed size fonts

    OTN articles like this one:
    http://otn.oracle.com/oramag/oracle/04-
    may/o34cover_feature.html
    are using a fixed font size. The page does not respond to the browser View &gt; Text Size menu command. This makes it difficult for me to read. Why not use a relative font size setting like xsmall and then we can resize the font if our eyesight is not so good.
    Fixed sized fonts seem to be very popular with webmasters. I guess the View &gt; Text Size option should just be removed from browsers and we can get a magnifying glass.

    FWIW, it is possible to increase browser text size when using Mozilla.
    Regards, OTN

  • Why do facebook, myyearbook, and gmail go to super size fonts when loaded in FF 7 or 8?

    I cannot use Facebook, myyearbook, or my Gmail! When I load them the fonts go to super size and I get only a 1/4 page on a 19" monitor! It renders those sights usless!

    Reset the page zoom on pages that cause problems, make sure that the window is not maximized:
    *<b>View > Zoom > Reset</b> (Ctrl+0 (zero); Cmd+0 on Mac)
    *http://kb.mozillazine.org/Zoom_text_of_web_pages

  • Need title with two diff sizes fonts

    creating a title over dynamic background
    cant seem to create two diff sizes of fonts within the Text field of Motion version 3
    change one line and the other line above, which needs to be bigger, changes as well
    I could go to Adobe Illustrator for this, which I KNOW will work, but sad to have to leave the Apple app

    Chris. Mistaken is not the same as clueless or silly. I did not call you either, and meant only that you had it wrong about Motion 3's capabilities.
    Since there is a very specific way to do what you were asking about; one that could be confused because there is more than one way to edit a text object, I wanted to assure you that the only reason you weren't getting the right results was that you hadn't happened upon the correct procedure.
    You see, unlike FCP, some procedures in Motion can only be done ONE way. For example, resizing a layer automatically as it's moved back in Z space so as to maintain its relative proportion to the camera can only be accomplished with a modifier key in the HUD. Attempting the same trick in the inspector or canvas won't get you anywhere.
    When I say, "It's possible you're not going about it the right way," I mean exactly that. You are not taking the correct steps to achieve the effect you want. That doesn't mean that it can't be done. And it doesn't mean you're witless either.
    I'm sorry that you feel I'm "distasteful". You seemed convinced in your earlier post that independently adjusting single letters inside a text object wasn't possible in Motion 3. Aside from hoping to HELP you by correcting your mistaken assumption, my secondary goal was to make sure that another user searching for help with the same problem might read the thread and get an answer.
    Be that as it may, I will do my best to never to respond to one of your queries again. I don't give help where it's unwanted, and I certainly have no desire to take a badgering for trying.
    Good luck and goodbye.
    Andy

  • My font size changed in Firefox when trying to read email using yahoo email. I now have to use explorer to read my mail. can you tell me how to return back to the readable size font. thank you

    I have been using firefox for years to read my email. recently the size of text became small and hard to read. I would like to get the text size large again, so I don't have to use the other browser. I have a att yahoo email account and subscribe to at&t uverse for internet service.

    I tried both of your suggestions and neither one worked. I found the solution by clicking on the "View" button, then "Reset". This put my email back to the original font/text size. Somehow the screen had been Zoomed in, so to change it, follow the instructions above.

  • Pcmanfm 0.9.7 incorrect partition size? [SOLVED]

    In PCManFM, the size of my hard drive is reported incorrectly.  If I open gparted and look at /dev/sdb, the usable size is 186 Gb out of 200 Gb, due to manufacturing tolerance, yadda yadda; however, PCManFM reports it having 199.9 Gb free.  Should I file a bug report or is there something I'm missing here?
    PCManFM version 0.9.7
    Last edited by umpalumpa1985 (2010-07-30 17:42:02)

    Inxsible wrote:Maybe pcmanfm started counting 1000KB as 1MB just like the HDD manufacturers
    Indeed it does...

  • I'm not good with computers or software.  I'm trying to save a RAW Ai file I created.  When I currently save it, the color or characters/size fonts are not coming up in the saved version. How can I save, and have all of my information

    Not going with computers.  Trying to figure out how to save Ai RAW file with colors/fonts etc.  Currently saves, but does not have colors and font information.

    When you say "Colors/Fonts" are not saved, I'm not sure what you mean. How have you determined they were not saved?
    Also, not sure what a "RAW" AI file is. I assume you mean simply a native format .ai file.
    .ai will save all font and color information. It does not "embed" fonts, but it saves what fonts were used and will call the correct fonts when reopened (assuming fonts are available on the system).
    CC 2014 also has a "Package" feature that will collect assets (fonts and images) into a central folder for easy distribution.

  • "nu" Font [solved]

    A while back there was a topic that had a nice little list of fonts that people liked/used for terminal work.  There was a font in there that I used to have on another system called "nu".  I cannot for the life of me find that font now.  Can someone point me either to the topic or to the font itself?
    Thanks!
    Last edited by lifeafter2am (2010-04-07 04:57:54)

    Peasantoid wrote:
    lifeafter2am wrote:The problem is that if it doesn't show up in xfontsel then dzen2 doesn't like to use it.  I know I had it before (it's in my saved config files), and I swear it was one that I had to install manually.  Any ideas?
    Nope, sorry.
    Although - why would dzen2 balk at using a font that's not in xfontsel? That seems ridiculous to me. (Disclaimer: I don't actually use dzen2.)
    The only way I can get dzen2 to use a font is by speficing it the way it is in xfontsel.  So for example: -*-dina-*-*-*-*-*-*-*-*-*-*-*-*.  There is a XFT version in AUR, maybe I should try that one.

Maybe you are looking for

  • Multiple values from a single function to be used SQL

    I have some pl/sql code that calculates multiple values in the same procedure (multiple out parameters). Now I want to use these separate values in an SQL select. One way to do it, is creating functions for each separate value. Performance wise, I do

  • Airport password doesn't work, how do I change it?

    I locked my airport after using it for ages in an unlocked format.  Now I am not able to get into it for the purpose of reconfirguring it.  The password I used to secure the lock doesn't work.  Is there any way to change a password when you don't kno

  • Making a DVD in IDVD

    Ok I have tried to make a DVD with IDVD about 14 different setting and they all have something wrong with the DVD. The fonts look like someone had eaten about the edges, or the whites have little spike lines in them. the wipes would look like I didn'

  • Printing JTable after turning off double buffering causing repaint problems

    I've followed all the instructions to speed up a print job in java by turning off double buffering temporarily by using the following call before calling paint() on the component... RepaintManager.currentManager(printTable).setDoubleBufferingEnabled(

  • Solution Manager Query

    Hello All, I am working on the SAP Solution Manager application. I have a very particular business requirement. I am looking out for a solution for Mass Migration of documents from an implementation project to a global template. I have gone through t