Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Tahoe Skin - Prompt not fully filled with background

    Hi there,
    Showing a prompt on density medium with skin Tahoe does show a small visual glitch.
    The white space in the shown window does not "fill" the whole window, or the border of the window might be too big.

    Tahoe on Medium:


    Version: SmartClient_v111p_2017-07-23_Pro
    Browser: All Browsers
    Skin: Tahoe
    Density: Medium

    Code for reproduction:
    Code:
    isc.Canvas.create({
    width: "100%",
    height: "100%",
    backgroundColor: "red;"
    });
    isc.Button.create({
    name: "test",
    top: 0,
    left: 0,
    click: function(){
    isc.showPrompt("Loading...");
    }});
    Best regards
    Last edited by SimonF; 24 Jul 2017, 00:27.

    #2
    We've made a change to address this issue. Please try the next nightly build, dated July 25.

    Regards
    Isomorphic Software

    Comment


      #3
      Thanks, this seemed to have fixed the prompts.
      The bug persists with a normal window in the latest downloadable version (SmartClient_v111p_2017-08-02_Pro).

      Browser: in all browsers with latest updates (IE11, Chrome, Firefox).
      Skin: Tahoe
      Density: every density
      Version: SmartClient_v111p_2017-08-02_Pro



      Code:
      isc.Canvas.create({"backgroundColor":"green",height:"100%",width:"100%"});
      isc.Window.create({
          "ID": "testWindow",
          "width": 300,
          "height": 100,
          "autoDraw": true,
          "top": 10,
          "left": 10,
          "title": "TestWindow"
      });
      Best regards

      Comment


        #4
        The issue has been fixed. Please try the next nightly build, dated August 04.

        Regards
        Isomorphic Software

        Comment


          #5
          Thanks, for the fix. Works as expectd.
          Best regards

          Comment

          Working...
          X