Skip to content
Snippets Groups Projects
Commit d79ad9fc authored by mkaply%us.ibm.com's avatar mkaply%us.ibm.com
Browse files

#42637

r=mkaply, a=brendan
OS/2 bring up - Make submenus appear
parent ca0f8937
No related merge requests found
...@@ -23,7 +23,8 @@ ...@@ -23,7 +23,8 @@
* Modifications to Mozilla code or documentation identified per MPL Section 3.3 * Modifications to Mozilla code or documentation identified per MPL Section 3.3
* *
* Date Modified by Description of modification * Date Modified by Description of modification
* 04/20/2000 IBM Corp. Make more like Windows. * 04/20/2000 IBM Corp. Make more like Windows.
* 06/21/2000 IBM Corp. Add SubmenuDelay case in GetMetric
*/ */
#include "nsLookAndFeel.h" #include "nsLookAndFeel.h"
...@@ -269,6 +270,9 @@ NS_IMETHODIMP nsLookAndFeel::GetMetric(const nsMetricID aID, PRInt32 & aMetric) ...@@ -269,6 +270,9 @@ NS_IMETHODIMP nsLookAndFeel::GetMetric(const nsMetricID aID, PRInt32 & aMetric)
case eMetric_ListVerticalInsidePadding: case eMetric_ListVerticalInsidePadding:
aMetric = 0; aMetric = 0;
break; break;
case eMetric_SubmenuDelay:
aMetric = 300;
break;
case eMetric_CaretBlinkTime: case eMetric_CaretBlinkTime:
svalue = SV_CURSORRATE; svalue = SV_CURSORRATE;
break; break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment